^start of line
https:the literal text https: (case sensitive) \/the literal / (4710 / 578 / 2F16)
\/the literal / (4710 / 578 / 2F16)
Character Class[a-z]{0,2} {0,2}matches between 0 and 2 characters from the set below:
a-zone character from a (9710) to z (12210) (case sensitive)
\.?optionally matches the literal . (4610 / 568 / 2E16)
blahthe literal text blah (case sensitive) \.the literal . (4610 / 568 / 2E16)
comthe literal text com (case sensitive) Non-Capturing Group(?:\/)? ?repeats the group contents below at most once:
\/the literal / (4710 / 578 / 2F16)
?repeats the group contents below at most once:
.*any character (except for line terminators), repeated any number of times
\/the literal / (4710 / 578 / 2F16)
requiredthe literal text required (case sensitive) \/the literal / (4710 / 578 / 2F16)
Bthe literal B (6610 / 1028 / 4216) (case sensitive)
Character Class[A-Z0-9]{9} {9}matches exactly 9 characters from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
0-9one character from 0 (4810) to 9 (5710)
.*any 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