^start of line
<the literal < (6010 / 748 / 3C16)
*matches any number of characters from the set below:
the literal (3210 / 408 / 2016)
\ta tab character (ASCII 9)
beginthe literal text begin (case sensitive) the literal (3210 / 408 / 2016)
\ta tab character (ASCII 9)
>the literal > (6210 / 768 / 3E16)
Negated Character Class[^<]* *matches any number of characters outside the set below:
<the literal < (6010 / 748 / 3C16)
*?matches any number of characters from the set below:
\sa Unicode whitespace character
\Sany character that is not Unicode whitespace
^start of line
<the literal < (6010 / 748 / 3C16)
*matches any number of characters from the set below:
the literal (3210 / 408 / 2016)
\ta tab character (ASCII 9)
endthe literal text end (case sensitive) *matches any number of characters from the set below:
the literal (3210 / 408 / 2016)
\ta tab character (ASCII 9)
>the literal > (6210 / 768 / 3E16)
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