RafflesBottothe literal text RafflesBotto (case sensitive) Non-Capturing Group(?:.|\n)* *repeats the group contents below any number of times:
.any character (except for line terminators)
\na line-feed (newline) character (ASCII 10)
spanthe literal text span (case sensitive) \sany whitespace character
class="pl-2the literal text class="pl-2 (case sensitive) .?optionally matches any character (except for line terminators)
>xthe literal text >x (case sensitive) \s*any whitespace character, repeated any number of times
+matches at least one character from the set below:
0-9one character from 0 (4810) to 9 (5710)
<the literal < (6010 / 748 / 3C16)
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