\/the literal / (4710 / 578 / 2F16)
\*the literal * (4210 / 528 / 2A16)
\*the literal * (4210 / 528 / 2A16)
Character Class[\s\S\w\W\d\D]+ +matches at least one character from the set below:
\sany whitespace character
\Sany non-whitespace character
\wany word character
\Wany non-word character
\da digit
\Dany character that's not a digit
\*the literal * (4210 / 528 / 2A16)
\/the literal / (4710 / 578 / 2F16)
+matches at least one character from the set below:
\sany whitespace character
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