<imgthe literal text <img (case insensitive) \sany whitespace character
Negated Character Class[^>]* *matches any number of characters outside the set below:
>the literal > (6210 / 768 / 3E16)
src="the literal text src=" (case insensitive) Group imageURL(?<imageURL>[^"]*) Negated Character Class[^"]* *matches any number of characters outside the set below:
"the literal " (3410 / 428 / 2216)
"the literal " (3410 / 428 / 2216)
\s*any whitespace character, repeated any number of times
\/the literal / (4710 / 578 / 2F16)
Comment: IMG tag
.*?any character, repeated any number of times
Comment: Anything in-between IMG and A
<athe literal text <a (case insensitive) \sany whitespace character
Negated Character Class[^>]*? *?matches any number of characters outside the set below:
>the literal > (6210 / 768 / 3E16)
href="the literal text href=" (case insensitive) \/the literal / (4710 / 578 / 2F16)
titlethe literal text title (case insensitive) \/the literal / (4710 / 578 / 2F16)
tt
the literal text tt (case insensitive) Group imdbid(?<imdbid>\d{7}) \d{7}a digit, repeated exactly 7 times
Comment: Got the imdbid
\/the literal / (4710 / 578 / 2F16)
Negated Character Class[^>]* *matches any number of characters outside the set below:
>the literal > (6210 / 768 / 3E16)
>the literal > (6210 / 768 / 3E16)
.*?any character, repeated any number of times
Comment: Got title
<the literal text <
\/the literal / (4710 / 578 / 2F16)
a> the literal text a> (case insensitive) Comment: End of A tag
\s*any whitespace character, repeated any number of times
\(the literal ( (4010 / 508 / 2816)
\d{4}a digit, repeated exactly 4 times
Comment: Year
\)the literal ) (4110 / 518 / 2916)
\s*any whitespace character, repeated any number of times
Non-Capturing Group(?:\( # Type is optional
(?<type>[^<]*) # Type
\))? ?repeats the group contents below at most once:
\(the literal ( (4010 / 508 / 2816)
Comment: Type is optional
Negated Character Class[^<]* *matches any number of characters outside the set below:
<the literal < (6010 / 748 / 3C16)
Comment: Type
\)the literal ) (4110 / 518 / 2916)
Comment: End of optional group
i modifier: insensitive. Matches without distinguishing uppercase and lowercase letters
g modifier: global. Finds all matches instead of stopping after the first
s modifier: single line. Allows a dot to match line terminators
x modifier: extended. Ignores unescaped whitespace and comments outside character classes