<the literal < (6010 / 748 / 3C16)
Rthe literal R (8210 / 1228 / 5216) (case sensitive)
rthe literal r (11410 / 1628 / 7216) (case sensitive)
epresentationthe literal text epresentation (case sensitive) Negated Character Class[^>]*? *?matches any number of characters outside the set below:
>the literal > (6210 / 768 / 3E16)
Bthe literal B (6610 / 1028 / 4216) (case sensitive)
bthe literal b (9810 / 1428 / 6216) (case sensitive)
andwidth="the literal text andwidth=" (case sensitive) 0?optionally matches the literal 0 (4810 / 608 / 3016)
2-9one character from 2 (5010) to 9 (5710)
\d{6}a digit, repeated exactly 6 times
"the literal " (3410 / 428 / 2216)
*?matches any number of characters from the set below:
\sany whitespace character
\Sany non-whitespace character
Rthe literal R (8210 / 1228 / 5216) (case sensitive)
rthe literal r (11410 / 1628 / 7216) (case sensitive)
epresentation>the literal text epresentation> (case sensitive) 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
s modifier: single line. Allows a dot to match line terminators