\ba Unicode word boundary
\d+a Unicode decimal digit, repeated at least once
Non-Capturing Group(?:[.,]\d+)? ?repeats the group contents below at most once:
.the literal . (4610 / 568 / 2E16)
,the literal , (4410 / 548 / 2C16)
\d+a Unicode decimal digit, repeated at least once
Non-Capturing Group(?:\s*-\s*\d+(?:[.,]\d+)?)? ?repeats the group contents below at most once:
\s*a Unicode whitespace character, repeated any number of times
-the literal - (4510 / 558 / 2D16)
\s*a Unicode whitespace character, repeated any number of times
\d+a Unicode decimal digit, repeated at least once
Non-Capturing Group(?:[.,]\d+)? ?repeats the group contents below at most once:
.the literal . (4610 / 568 / 2E16)
,the literal , (4410 / 548 / 2C16)
\d+a Unicode decimal digit, repeated at least once
\s*a Unicode whitespace character, repeated any number of times
kmthe literal text km (case sensitive) \s*a Unicode whitespace character, repeated any number of times
/the literal / (4710 / 578 / 2F16)
\s*a Unicode whitespace character, repeated any number of times
Non-Capturing Group(?:h|10min) hthe literal h (10410 / 1508 / 6816) (case sensitive)
10minthe literal text 10min (case sensitive) \ba Unicode word boundary
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