\ba Unicode word boundary
createthe literal text create (case insensitive) \ba Unicode word boundary
\s*a Unicode whitespace character, repeated any number of times
Non-Capturing Group(?:or replace\s*(?:\btemporary\s*)?)? ?repeats the group contents below at most once:
or replacethe literal text or replace (case insensitive) \s*a Unicode whitespace character, repeated any number of times
Non-Capturing Group(?:\btemporary\s*)? ?repeats the group contents below at most once:
\ba Unicode word boundary
temporarythe literal text temporary (case insensitive) \s*a Unicode whitespace character, repeated any number of times
\ba Unicode word boundary
tablethe literal text table (case insensitive) \s*a Unicode whitespace character, repeated any number of times
Non-Capturing Group(?:\bif not exists\s*)? ?repeats the group contents below at most once:
\ba Unicode word boundary
if not existsthe literal text if not exists (case insensitive) \s*a Unicode whitespace character, repeated any number of times
\ba Unicode word boundary
\w+a Unicode word character, repeated at least once
\s*a Unicode whitespace character, repeated any number of times
\(the literal ( (4010 / 508 / 2816)
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
i modifier: insensitive. Matches without distinguishing uppercase and lowercase letters