^start of line
\d+a Unicode decimal digit, repeated at least once
/the literal / (4710 / 578 / 2F16)
\d+a Unicode decimal digit, repeated at least once
/the literal / (4710 / 578 / 2F16)
\d+a Unicode decimal digit, repeated at least once
\sa Unicode whitespace character
Non-Capturing Group(?:-\s)? ?repeats the group contents below at most once:
-the literal - (4510 / 558 / 2D16)
\sa Unicode whitespace character
\d+a Unicode decimal digit, repeated at least once
/the literal / (4710 / 578 / 2F16)
\d+a Unicode decimal digit, repeated at least once
/the literal / (4710 / 578 / 2F16)
\d+a Unicode decimal digit, repeated at least once
$end of line
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