A-Zone character from A (6510) to Z (9010) (case sensitive)
Character Class[A-Za-z\'\(\)\s]+ +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)
\'the literal ' (3910 / 478 / 2716)
\(the literal ( (4010 / 508 / 2816)
\)the literal ) (4110 / 518 / 2916)
\sany whitespace character
\ban ASCII word boundary
vthe literal v (11810 / 1668 / 7616) (case sensitive)
Vthe literal V (8610 / 1268 / 5616) (case sensitive)
\ban ASCII word boundary
Character Class[A-Za-z\'\(\) ]+ +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)
\'the literal ' (3910 / 478 / 2716)
\(the literal ( (4010 / 508 / 2816)
\)the literal ) (4110 / 518 / 2916)
the literal (3210 / 408 / 2016)
.*?any character (except for line terminators), repeated any number of times
*matches any number of characters from the set below:
\[the literal [ (9110 / 1338 / 5B16)
\d+a digit, repeated at least once
\s*any whitespace character, repeated any number of times
\w+any word character, repeated at least once
\s*any whitespace character, repeated any number of times
\d{4}a digit, repeated exactly 4 times
*matches any number of characters from the set below:
\]the literal ] (9310 / 1358 / 5D16)
g modifier: global. Finds all matches instead of stopping after the first