+matches at least one character from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
the literal (3210 / 408 / 2016)
,the literal , (4410 / 548 / 2C16)
+the literal (3210 / 408 / 2016) , repeated at least once
Character Class[A-Z\d .]+ +matches at least one character from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
\da digit
the literal (3210 / 408 / 2016)
.the literal . (4610 / 568 / 2E16)
,the literal , (4410 / 548 / 2C16)
+the literal (3210 / 408 / 2016) , repeated at least once
\d+a digit, repeated at least once
+the literal (3210 / 408 / 2016) , repeated at least once
Character Class[A-Z\d() ]+ +matches at least one character from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
\da digit
(the literal ( (4010 / 508 / 2816)
)the literal ) (4110 / 518 / 2916)
the literal (3210 / 408 / 2016)
g modifier: global. Finds all matches instead of stopping after the first