catchthe literal text catch (case sensitive) *the literal (3210 / 408 / 2016) , repeated any number of times
\(the literal ( (4010 / 508 / 2816)
\w+any word character, repeated at least once
\)the literal ) (4110 / 518 / 2916)
*the literal (3210 / 408 / 2016) , repeated any number of times
{the literal { (12310 / 1738 / 7B16)
Negated Character Class[^}]+ +matches at least one character outside the set below:
}the literal } (12510 / 1758 / 7D16)
\1the text saved by group 1
\.the literal . (4610 / 568 / 2E16)
stackthe literal text stack (case sensitive) Negated Character Class[^}]+ +matches at least one character outside the set below:
}the literal } (12510 / 1758 / 7D16)
}the literal } (12510 / 1758 / 7D16)
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