(?ms)applies the following effective flags to the remainder of the pattern: gms 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
createthe literal text create (case sensitive) \s+any whitespace character, repeated at least once
tablethe literal text table (case sensitive) \s+any whitespace character, repeated at least once
\"the literal " (3410 / 428 / 2216)
\w+any word character, repeated at least once
\"the literal " (3410 / 428 / 2216)
\.the literal . (4610 / 568 / 2E16)
Group table_name(?<table_name>\w*) \w*any word character, repeated any number of times
.*any character, repeated any number of times
createthe literal text create (case sensitive) \s+any whitespace character, repeated at least once
indexthe literal text index (case sensitive) \s+any whitespace character, repeated at least once
\"the literal " (3410 / 428 / 2216)
\w+any word character, repeated at least once
\"the literal " (3410 / 428 / 2216)
\.the literal . (4610 / 568 / 2E16)
\w+any word character, repeated at least once
.*any character, repeated any number of times
createthe literal text create (case sensitive) \s+any whitespace character, repeated at least once
triggerthe literal text trigger (case sensitive) \s+any whitespace character, repeated at least once
\"the literal " (3410 / 428 / 2216)
\w+any word character, repeated at least once
\"the literal " (3410 / 428 / 2216)
\.the literal . (4610 / 568 / 2E16)
Group trigger(?<trigger>\w+) \w+any word character, repeated at least once
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