Character Class[0-9]{1,2} {1,2}matches between 1 and 2 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\s+a Unicode whitespace character, repeated at least once
dthe literal d (10010 / 1448 / 6416) (case sensitive)
\s?optionally matches a Unicode whitespace character
e?optionally matches the literal e (10110 / 1458 / 6516) (case sensitive)
\s+a Unicode whitespace character, repeated at least once
\&?optionally matches the literal & (3810 / 468 / 2616)
\&?optionally matches the literal & (3810 / 468 / 2616)
Character Class[a-zà-ü]{4,9} {4,9}matches between 4 and 9 characters from the set below:
a-zone character from a (9710) to z (12210) (case sensitive)
à-üone character from à (22410) to ü (25210) (case sensitive)
\s+a Unicode whitespace character, repeated at least once
{4}matches exactly 4 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\,?optionally matches the literal , (4410 / 548 / 2C16)
\s?optionally matches a Unicode whitespace character
?repeats the group contents below at most once:
àthe literal à (22410 / 3408 / E016) (case sensitive)
athe literal a (9710 / 1418 / 6116) (case sensitive)
sthe literal s (11510 / 1638 / 7316) (case sensitive)
\s+a Unicode whitespace character, repeated at least once
\&?optionally matches the literal & (3810 / 468 / 2616)
\&?optionally matches the literal & (3810 / 468 / 2616)
{2}matches exactly 2 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
:the literal : (5810 / 728 / 3A16)
hthe literal h (10410 / 1508 / 6816) (case sensitive)
h:the literal text h: (case sensitive) {2}matches exactly 2 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)