^start of line
httpthe literal text http (case sensitive) s?optionally matches the literal s (11510 / 1638 / 7316) (case sensitive)
:the literal : (5810 / 728 / 3A16)
\/the literal / (4710 / 578 / 2F16)
\/the literal / (4710 / 578 / 2F16)
?repeats the group contents below at most once:
wwwthe literal text www (case sensitive) \.the literal . (4610 / 568 / 2E16)
photos18the literal text photos18 (case sensitive) \.the literal . (4610 / 568 / 2E16)
comthe literal text com (case sensitive) \/?optionally matches the literal / (4710 / 578 / 2F16)
Group 2((sort\/[\w\d]+)|(v\/[\w\d]+)|(cat\/\d)|) 1st Alternative(sort\/[\w\d]+) sortthe literal text sort (case sensitive) \/the literal / (4710 / 578 / 2F16)
+matches at least one character from the set below:
\wa Unicode word character
\da Unicode decimal digit
2nd Alternative(v\/[\w\d]+) vthe literal v (11810 / 1668 / 7616) (case sensitive)
\/the literal / (4710 / 578 / 2F16)
+matches at least one character from the set below:
\wa Unicode word character
\da Unicode decimal digit
catthe literal text cat (case sensitive) \/the literal / (4710 / 578 / 2F16)
\da Unicode decimal digit
4th Alternative — matches an empty string
?repeats the group contents below at most once:
\?the literal ? (6310 / 778 / 3F16)
.*any Unicode character (except for line terminators), repeated any number of times
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