^start of string
.*?any character (except for line terminators), repeated any number of times
\da digit
*matches any number of characters from the set below:
\da digit
.the literal . (4610 / 568 / 2E16)
,the literal , (4410 / 548 / 2C16)
\s?optionally matches any whitespace character
Group 2(cm|m|mm|dm|verstellbar) cmthe literal text cm (case sensitive) mthe literal m (10910 / 1558 / 6D16) (case sensitive)
mmthe literal text mm (case sensitive) dmthe literal text dm (case sensitive) 5th Alternativeverstellbar verstellbarthe literal text verstellbar (case sensitive) \ban ASCII word boundary
.*any character (except for line terminators), repeated any number of times
$end of string, or before its final line terminator