\d{8}a digit, repeated exactly 8 times
\s*any whitespace character, repeated any number of times
\d{10}a digit, repeated exactly 10 times
\s*any whitespace character, repeated any number of times
+matches at least one character from the set below:
\da digit
/the literal / (4710 / 578 / 2F16)
\s*any whitespace character, repeated any number of times
+matches at least one character from the set below:
\da digit
\.the literal . (4610 / 568 / 2E16)
\s*any whitespace character, repeated any number of times
+matches at least one character from the set below:
\da digit
\.the literal . (4610 / 568 / 2E16)
\s*any whitespace character, repeated any number of times
+matches at least one character from the set below:
\da digit
\.the literal . (4610 / 568 / 2E16)
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