^start of line
httpthe literal text http (case insensitive) s?optionally matches the literal s (11510 / 1638 / 7316) (case insensitive)
:the literal : (5810 / 728 / 3A16)
\/the literal / (4710 / 578 / 2F16)
\/the literal / (4710 / 578 / 2F16)
wwwthe literal text www (case insensitive) \.the literal . (4610 / 568 / 2E16)
Non-Capturing Group(?:[a-z0-9]-?)+ +repeats the group contents below at least once:
a-zone character from a (9710) to z (12210) (case insensitive)
0-9one character from 0 (4810) to 9 (5710)
-?optionally matches the literal - (4510 / 558 / 2D16)
Negated Character Class[^-\.] -the literal - (4510 / 558 / 2D16)
\.the literal . (4610 / 568 / 2E16)
\.the literal . (4610 / 568 / 2E16)
Character Class[a-z]{2,15} {2,15}matches between 2 and 15 characters from the set below:
a-zone character from a (9710) to z (12210) (case insensitive)
Non-Capturing Group(?:\.[a-z]{2})? ?repeats the group contents below at most once:
\.the literal . (4610 / 568 / 2E16)
{2}matches exactly 2 characters from the set below:
a-zone character from a (9710) to z (12210) (case insensitive)
$end of line
g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string
i modifier: insensitive. Matches without distinguishing uppercase and lowercase letters