Group Street(?'Street'[0-9]*[a-zA-Z\s]*) *matches any number of characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
Character Class[a-zA-Z\s]* *matches any number of characters 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)
\sany whitespace character
,?optionally matches the literal , (4410 / 548 / 2C16)
\s*any whitespace character, repeated any number of times
Group City(?'City'[A-Za-z\s]*) Character Class[A-Za-z\s]* *matches any number of characters 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)
\sany whitespace character
,?optionally matches the literal , (4410 / 548 / 2C16)
\s*any whitespace character, repeated any number of times
Group Country(?'Country'[A-Za-z]*) *matches any number of characters 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)
\s*any whitespace character, repeated any number of times
Group Zipcode(?'Zipcode'[0-9]*-?[0-9]*) *matches any number of characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
-?optionally matches the literal - (4510 / 558 / 2D16)
*matches any number of characters from the set below:
0-9one character from 0 (4810) to 9 (5710)