\w+any word character, repeated at least once
_the literal _ (9510 / 1378 / 5F16)
\d+a digit, repeated at least once
_the literal _ (9510 / 1378 / 5F16)
\w+any word character, repeated at least once
_the literal _ (9510 / 1378 / 5F16)
\d+a digit, repeated at least once
m_Length_the literal text m_Length_ (case sensitive) Group 2(([0-9]*[.])?[0-9]+) ?repeats the group contents below at most once:
*matches any number of characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
.the literal . (4610 / 568 / 2E16)
+matches at least one character from the set below:
0-9one character from 0 (4810) to 9 (5710)
_Widththe literal text _Width (case sensitive) 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