geo:the literal text geo: (case sensitive) -?optionally matches the literal - (4510 / 558 / 2D16)
Character Class[0-9]{1,2} {1,2}matches between 1 and 2 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\.the literal . (4610 / 568 / 2E16)
*matches any number of characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
,the literal , (4410 / 548 / 2C16)
-?optionally matches the literal - (4510 / 558 / 2D16)
Character Class[0-9]{1,3} {1,3}matches between 1 and 3 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\.?optionally matches the literal . (4610 / 568 / 2E16)
*matches any number of characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
?repeats the group contents below at most once:
;u=the literal text ;u= (case sensitive) Character Class[0-9]{1,2} {1,2}matches between 1 and 2 characters from the set below:
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