ZTree Regex Example Solution - Part 1 of 2
_
(
\d
\d
)
(
\d
\d
)
(
\d
\d
)
_
Options: case insensitive; ^ and $ match at line breaks
Match the character "_" literally
Match the regular expression below and capture its match into backreference number 1
Match a single digit 0..9
Match a single digit 0..9
Match the regular expression below and capture its match into backreference number 2
Match a single digit 0..9
Match a single digit 0..9
Match the regular expression below and capture its match into backreference number 3
Match a single digit 0..9
Match a single digit 0..9
Match the character "_" literally