Step 2a
Filtering Out the Noise with Regex
Extracting attribute titles
<strong>([^<]*)<\/strong>
-
match the characters "<strong>" literally
-
match the regular expression below and capture its match into backreference number 1
-
match any character that is not a "<"
-
between zero and unlimited times, as many times as possible, giving back as needed (greedy)
-
match the character "<" literally
-
match the character "/" literally
-
match the characters "strong>" literally
← Back to post