0-9one character from 0 (4810) to 9 (5710)
\s+any whitespace character, repeated at least once
0-9one character from 0 (4810) to 9 (5710)
\s+any whitespace character, repeated at least once
Character Class[A-Za-z0-9- ]+? +?matches at least one character from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
a-zone character from a (9710) to z (12210) (case sensitive)
0-9one character from 0 (4810) to 9 (5710)
-the literal - (4510 / 558 / 2D16)
the literal (3210 / 408 / 2016)
\s{2,}any whitespace character, repeated at least 2 times
Character Class[A-Za-z0-9- ]+? +?matches at least one character from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
a-zone character from a (9710) to z (12210) (case sensitive)
0-9one character from 0 (4810) to 9 (5710)
-the literal - (4510 / 558 / 2D16)
the literal (3210 / 408 / 2016)
\s+any whitespace character, repeated at least once
Character Class[A-Za-z0-9]+ +matches at least one character from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
a-zone character from a (9710) to z (12210) (case sensitive)
0-9one character from 0 (4810) to 9 (5710)
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