\/the literal / (4710 / 578 / 2F16)
\*the literal * (4210 / 528 / 2A16)
Character Class[a-zA-Z0-9]+ +matches at least one character from the set below:
a-zone character from a (9710) to z (12210) (case sensitive)
A-Zone character from A (6510) to Z (9010) (case sensitive)
0-9one character from 0 (4810) to 9 (5710)
_STARTthe literal text _START (case sensitive) \*the literal * (4210 / 528 / 2A16)
\/the literal / (4710 / 578 / 2F16)
.*?any character, repeated any number of times
\/the literal / (4710 / 578 / 2F16)
\*the literal * (4210 / 528 / 2A16)
\1the text saved by group 1
_ENDthe literal text _END (case sensitive) \*the literal * (4210 / 528 / 2A16)
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string
s modifier: single line. Allows a dot to match line terminators
g modifier: global. Finds all matches instead of stopping after the first