<emphasis role="strong">the literal text <emphasis role="strong"> (case sensitive) .*any character, repeated any number of times
Code<the literal text Code< (case sensitive) \/the literal / (4710 / 578 / 2F16)
emphasis>the literal text emphasis> (case sensitive) \s*any whitespace character, repeated any number of times
<the literal < (6010 / 748 / 3C16)
\/the literal / (4710 / 578 / 2F16)
para>the literal text para> (case sensitive) \s*any whitespace character, repeated any number of times
<programlistingthe literal text <programlisting (case sensitive) ?optionally matches the literal (3210 / 408 / 2016)
Group 2(language="(.*)")? ?repeats the group contents below at most once:
language="the literal text language=" (case sensitive) .*any character, repeated any number of times
"the literal " (3410 / 428 / 2216)
>the literal > (6210 / 768 / 3E16)
\s*any whitespace character, repeated any number of times
.*any character, repeated any number of times
<the literal < (6010 / 748 / 3C16)
\/the literal / (4710 / 578 / 2F16)
programlisting>the literal text programlisting> (case sensitive) m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string
U modifier: Ungreedy. Quantifiers are lazy by default. A trailing ? makes a quantifier greedy
s modifier: single line. Allows a dot to match line terminators
g modifier: global. Finds all matches instead of stopping after the first