Group 1(^(\/\*)|([ \t'"](\/\*))) ^start of line
\/the literal / (4710 / 578 / 2F16)
\*the literal * (4210 / 528 / 2A16)
2nd Alternative([ \t'"](\/\*)) the literal (3210 / 408 / 2016)
\ta tab character (ASCII 9)
'the literal ' (3910 / 478 / 2716)
"the literal " (3410 / 428 / 2216)
\/the literal / (4710 / 578 / 2F16)
\*the literal * (4210 / 528 / 2A16)
\/the literal / (4710 / 578 / 2F16)
+?repeats the group contents below at least once:
.any character (except for line terminators)
\ra carriage return (ASCII 13)
\na line-feed (newline) character (ASCII 10)
\na line-feed (newline) character (ASCII 10)
\*the literal * (4210 / 528 / 2A16)
\/the literal / (4710 / 578 / 2F16)
\n?optionally matches a line-feed (newline) character (ASCII 10)
\n?optionally matches a line-feed (newline) character (ASCII 10)
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