^start of line
https:the literal text https: (case sensitive) \/the literal / (4710 / 578 / 2F16)
\/the literal / (4710 / 578 / 2F16)
Negated Character Class[^\/]+ +matches at least one character outside the set below:
\/the literal / (4710 / 578 / 2F16)
\.the literal . (4610 / 568 / 2E16)
my-sitethe literal text my-site (case sensitive) \.the literal . (4610 / 568 / 2E16)
comthe literal text com (case sensitive) cloudthe literal text cloud (case sensitive) ?repeats the group contents below at most once:
\/the literal / (4710 / 578 / 2F16)
.*?any character (except for line terminators), repeated any number of times
$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