<a
the literal text <a (case sensitive) \s*any whitespace character, repeated any number of times
Non-Capturing Group(?:(class|href|target)=\"(.*?)\")? ?repeats the group contents below at most once:
Group 1(class|href|target) classthe literal text class (case sensitive) hrefthe literal text href (case sensitive) targetthe literal text target (case sensitive) =the literal = (6110 / 758 / 3D16)
\"the literal " (3410 / 428 / 2216)
.*?any character (except for line terminators), repeated any number of times
\"the literal " (3410 / 428 / 2216)
\s*any whitespace character, repeated any number of times
Non-Capturing Group(?:(class|href|target)=\"(.*?)\")? ?repeats the group contents below at most once:
Group 3(class|href|target) classthe literal text class (case sensitive) hrefthe literal text href (case sensitive) targetthe literal text target (case sensitive) =the literal = (6110 / 758 / 3D16)
\"the literal " (3410 / 428 / 2216)
.*?any character (except for line terminators), repeated any number of times
\"the literal " (3410 / 428 / 2216)
\s*any whitespace character, repeated any number of times
Group 5(class|href|target) classthe literal text class (case sensitive) hrefthe literal text href (case sensitive) targetthe literal text target (case sensitive) =the literal = (6110 / 758 / 3D16)
\"the literal " (3410 / 428 / 2216)
.*?any character (except for line terminators), repeated any number of times
\"the literal " (3410 / 428 / 2216)
\s*any whitespace character, repeated any number of times
>
the literal text >
.*?any character (except for line terminators), repeated any number of times
<the literal text <
\/the literal / (4710 / 578 / 2F16)
a>the literal text a> (case sensitive) g modifier: global. Finds all matches instead of stopping after the first
x modifier: extended. Ignores unescaped whitespace and comments outside character classes