nodethe literal text node (case sensitive) .*?any Unicode character (except for line terminators), repeated any number of times
=the literal = (6110 / 758 / 3D16)
\w+a Unicode word character, repeated at least once
.*?any Unicode character (except for line terminators), repeated any number of times
\sa Unicode whitespace character
\d+a Unicode decimal digit, 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