Group 1([0-9]{7}[xX0-9]{1}) {7}matches exactly 7 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
Character Class[xX0-9]{1} {1}matches one character from the set below:
xthe literal x (12010 / 1708 / 7816) (case sensitive)
Xthe literal X (8810 / 1308 / 5816) (case sensitive)
0-9one character from 0 (4810) to 9 (5710)
\_the literal _ (9510 / 1378 / 5F16)
Group 2([0-9]{3}|[0-9]{3}\-[0-9]{3}) {3}matches exactly 3 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
2nd Alternative[0-9]{3}\-[0-9]{3} {3}matches exactly 3 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\-the literal - (4510 / 558 / 2D16)
{3}matches exactly 3 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\_the literal _ (9510 / 1378 / 5F16)
Group 3([0-9]{2}|[0-9]{2}\-[0-9]{2}) {2}matches exactly 2 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
2nd Alternative[0-9]{2}\-[0-9]{2} {2}matches exactly 2 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\-the literal - (4510 / 558 / 2D16)
{2}matches exactly 2 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\_the literal _ (9510 / 1378 / 5F16)
.*any character (except for line terminators), repeated any number of times
\.the literal . (4610 / 568 / 2E16)
.*any character (except for line terminators), repeated any number of times