^start of line
Group 1([\d\.\/\-]{10,11}) Character Class[\d\.\/\-]{10,11} {10,11}matches between 10 and 11 characters from the set below:
\da digit
\.the literal . (4610 / 568 / 2E16)
\/the literal / (4710 / 578 / 2F16)
\-the literal - (4510 / 558 / 2D16)
+the literal (3210 / 408 / 2016) , repeated at least once
{5}matches exactly 5 characters from the set below:
\da digit
\:the literal : (5810 / 728 / 3A16)
+the literal (3210 / 408 / 2016) , repeated at least once
<DIR>the literal text <DIR> (case sensitive) +the literal (3210 / 408 / 2016) , repeated at least once
Negated Character Class[^ ] the literal (3210 / 408 / 2016)
.*?any character (except for line terminators), repeated any number of times
\\the literal \ (9210 / 1348 / 5C16)
.*?any character (except for line terminators), repeated any number of times
+the literal (3210 / 408 / 2016) , repeated at least once
Negated Character Class[^ ] the literal (3210 / 408 / 2016)
.*?any character (except for line terminators), repeated any number of times
$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