(?s)applies the following effective flags to the remainder of the pattern: gs s modifier: single line. Allows a dot to match line terminators
class="ml-itemthe literal text class="ml-item (case sensitive) .*?any Unicode character, repeated any number of times
a href="the literal text a href=" (case sensitive) Negated Character Class[^"]+ +matches at least one character outside the set below:
"the literal " (3410 / 428 / 2216)
.*?any Unicode character, repeated any number of times
img src="the literal text img src=" (case sensitive) Negated Character Class[^"]+ +matches at least one character outside the set below:
"the literal " (3410 / 428 / 2216)
.*?any Unicode character, repeated any number of times
alt="the literal text alt=" (case sensitive) Negated Character Class[^"]+ +matches at least one character outside the set below:
"the literal " (3410 / 428 / 2216)
.*?any Unicode character, repeated any number of times
class="year">the literal text class="year"> (case sensitive) Negated Character Class[^<]+ +matches at least one character outside the set below:
<the literal < (6010 / 748 / 3C16)
.*?any Unicode character, repeated any number of times
class="calidad2">the literal text class="calidad2"> (case sensitive) Negated Character Class[^<]+ +matches at least one character outside the set below:
<the literal < (6010 / 748 / 3C16)
g modifier: global. Finds all matches instead of stopping after the first