/the literal / (4710 / 578 / 2F16)
\*the literal * (4210 / 528 / 2A16)
\n?optionally matches a line-feed (newline) character (ASCII 10)
\r?optionally matches a carriage return (ASCII 13)
the literal ↵ (1010 / 128 / A16)
Non-Capturing Group(?: \* ©20\d{2}.*\n?\r?) the literal (3210 / 408 / 2016)
\*the literal * (4210 / 528 / 2A16)
\d{2}a digit, repeated exactly 2 times
.*any character (except for line terminators), repeated any number of times
\n?optionally matches a line-feed (newline) character (ASCII 10)
\r?optionally matches a carriage return (ASCII 13)
the literal ↵ (1010 / 128 / A16)
Non-Capturing Group(?: \*(?:.*\n?\r?))+ +repeats the group contents below at least once:
the literal (3210 / 408 / 2016)
\*the literal * (4210 / 528 / 2A16)
Non-Capturing Group(?:.*\n?\r?) .*any character (except for line terminators), repeated any number of times
\n?optionally matches a line-feed (newline) character (ASCII 10)
\r?optionally matches a carriage return (ASCII 13)
\*the literal * (4210 / 528 / 2A16)
/the literal / (4710 / 578 / 2F16)
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string
g modifier: global. Finds all matches instead of stopping after the first