Non-Capturing Group(?:sqlite3ErrorMsg|sqlite3MPrintf|sqlite3VdbeError) 1st Alternativesqlite3ErrorMsg sqlite3ErrorMsgthe literal text sqlite3ErrorMsg (case sensitive) 2nd Alternativesqlite3MPrintf sqlite3MPrintfthe literal text sqlite3MPrintf (case sensitive) 3rd Alternativesqlite3VdbeError sqlite3VdbeErrorthe literal text sqlite3VdbeError (case sensitive) \s*any whitespace character, repeated any number of times
\(the literal ( (4010 / 508 / 2816)
\s*any whitespace character, repeated any number of times
\w+any word character, repeated at least once
,the literal , (4410 / 548 / 2C16)
Group 1((?:\s*"[^"\\]*(?:\\.[^"\\]*)*")+) Non-Capturing Group(?:\s*"[^"\\]*(?:\\.[^"\\]*)*")+ +repeats the group contents below at least once:
\s*any whitespace character, repeated any number of times
"the literal " (3410 / 428 / 2216)
Negated Character Class[^"\\]* *matches any number of characters outside the set below:
"the literal " (3410 / 428 / 2216)
\\the literal \ (9210 / 1348 / 5C16)
Non-Capturing Group(?:\\.[^"\\]*)* *repeats the group contents below any number of times:
\\the literal \ (9210 / 1348 / 5C16)
.any character (except for line terminators)
Negated Character Class[^"\\]* *matches any number of characters outside the set below:
"the literal " (3410 / 428 / 2216)
\\the literal \ (9210 / 1348 / 5C16)
"the literal " (3410 / 428 / 2216)
g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string