hellothe literal text hello (case sensitive) \.the literal . (4610 / 568 / 2E16)
this_isthe literal text this_is (case sensitive) \(the literal ( (4010 / 508 / 2816)
\047the literal ' (478 / 3910 / 2716)
"the literal " (3410 / 428 / 2216)
\Kresets the starting point of the reported match. Any previously consumed characters are no longer included in the final match
*repeats the group contents below any number of times:
\1the text saved by group 1
.any character (except for line terminators)
\\the literal \ (9210 / 1348 / 5C16)
.any character (except for line terminators)
\1the text saved by group 1
\)the literal ) (4110 / 518 / 2916)
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