.*?any Unicode character (except for line terminators), repeated any number of times
,?optionally matches the literal , (4410 / 548 / 2C16)
\s?optionally matches a Unicode whitespace character
{2}matches exactly 2 characters from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
\s?optionally matches a Unicode whitespace character
{5}matches exactly 5 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
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