<ulthe literal text <ul (case insensitive) .*?any character (except for line terminators), repeated any number of times
class=the literal text class= (case insensitive) \'the literal ' (3910 / 478 / 2716)
\"the literal " (3410 / 428 / 2216)
Non-Capturing Group(?:s|bbc) sthe literal s (11510 / 1638 / 7316) (case insensitive)
bbcthe literal text bbc (case insensitive) \1the text saved by group 1
Negated Character Class[^>]* *matches any number of characters outside the set below:
>the literal > (6210 / 768 / 3E16)
>the literal > (6210 / 768 / 3E16)
.*?any character (except for line terminators), repeated any number of times
Positive Lookahead(?=\<\/ul\>) \<the literal < (6010 / 748 / 3C16)
\/the literal / (4710 / 578 / 2F16)
ulthe literal text ul (case insensitive) \>the literal > (6210 / 768 / 3E16)
<the literal < (6010 / 748 / 3C16)
\/the literal / (4710 / 578 / 2F16)
ul>the literal text ul> (case insensitive) g modifier: global. Finds all matches instead of stopping after the first
i modifier: insensitive. Matches without distinguishing uppercase and lowercase letters