.*?any character (except for line terminators), repeated any number of times
_the literal _ (9510 / 1378 / 5F16)
?repeats the group contents below at most once:
cethe literal text ce (case sensitive) _?optionally matches the literal _ (9510 / 1378 / 5F16)
.*any character (except for line terminators), repeated any number of times
_the literal _ (9510 / 1378 / 5F16)
{8}matches exactly 8 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\.the literal . (4610 / 568 / 2E16)
?repeats the group contents below at most once:
Character Class[A-Za-z]{1,20} {1,20}matches between 1 and 20 characters from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
a-zone character from a (9710) to z (12210) (case sensitive)
\.the literal . (4610 / 568 / 2E16)
?repeats the group contents below at most once:
Character Class[A-Za-z]{1,20} {1,20}matches between 1 and 20 characters from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
a-zone character from a (9710) to z (12210) (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