\{the literal { (12310 / 1738 / 7B16)
queryRunner the literal text queryRunner (case sensitive) \}the literal } (12510 / 1758 / 7D16)
Group 1([\n{}A-Za-z0-9., :]*) Character Class[\n{}A-Za-z0-9., :]* *matches any number of characters from the set below:
\na line-feed (newline) character (ASCII 10)
{the literal { (12310 / 1738 / 7B16)
}the literal } (12510 / 1758 / 7D16)
A-Zone character from A (6510) to Z (9010) (case sensitive)
a-zone character from a (9710) to z (12210) (case sensitive)
0-9one character from 0 (4810) to 9 (5710)
.the literal . (4610 / 568 / 2E16)
,the literal , (4410 / 548 / 2C16)
the literal (3210 / 408 / 2016)
:the literal : (5810 / 728 / 3A16)
\{the literal { (12310 / 1738 / 7B16)
\n*a line-feed (newline) character (ASCII 10), repeated any number of times
\s*any whitespace character, repeated any number of times
userthe literal text user (case sensitive) ,*the literal , (4410 / 548 / 2C16) , repeated any number of times
?repeats the group contents below at most once:
Character Class[a-zA-Z,]+ +matches at least one character from the set below:
a-zone character from a (9710) to z (12210) (case sensitive)
A-Zone character from A (6510) to Z (9010) (case sensitive)
,the literal , (4410 / 548 / 2C16)
\n*a line-feed (newline) character (ASCII 10), repeated any number of times
\s*any whitespace character, repeated any number of times
\}the literal } (12510 / 1758 / 7D16)
as ContextWithUserthe literal text as ContextWithUser (case sensitive) 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
s modifier: single line. Allows a dot to match line terminators