\sany whitespace character
0-9one character from 0 (4810) to 9 (5710)
\sany whitespace character
Character Class[A-Z]{2,3} {2,3}matches between 2 and 3 characters from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
Character Class[0-9\s]{4} {4}matches exactly 4 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\sany whitespace character
\sany whitespace character
A-Zone character from A (6510) to Z (9010) (case sensitive)
\sany whitespace character
\sany whitespace character
Character Class[A-Z]{1,2} {1,2}matches between 1 and 2 characters from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
\sany whitespace character
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)
Group 6(JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC) JANthe literal text JAN (case sensitive) FEBthe literal text FEB (case sensitive) MARthe literal text MAR (case sensitive) APRthe literal text APR (case sensitive) MAYthe literal text MAY (case sensitive) JUNthe literal text JUN (case sensitive) JULthe literal text JUL (case sensitive) AUGthe literal text AUG (case sensitive) SEPthe literal text SEP (case sensitive) OCTthe literal text OCT (case sensitive) NOVthe literal text NOV (case sensitive) DECthe literal text DEC (case sensitive) \sany whitespace character
\sany whitespace character
\sany whitespace character
\sany whitespace character
\sany whitespace character
\sany whitespace character
\sany whitespace character
g modifier: global. Finds all matches instead of stopping after the first