Process the literal text Process (case sensitive) \d{7}a digit, repeated exactly 7 times
\-the literal - (4510 / 558 / 2D16)
\d{2}a digit, repeated exactly 2 times
\.the literal . (4610 / 568 / 2E16)
\d{4}a digit, repeated exactly 4 times
\.the literal . (4610 / 568 / 2E16)
\d+a digit, repeated at least once
\.the literal . (4610 / 568 / 2E16)
\d{2}a digit, repeated exactly 2 times
\.the literal . (4610 / 568 / 2E16)
\d{4}a digit, repeated exactly 4 times
.*?any character (except for line terminators), repeated any number of times