+matches at least one character from the set below:
\da Unicode decimal digit
\.the literal . (4610 / 568 / 2E16)
*?matches any number of characters from the set below:
\sa Unicode whitespace character
\Sany character that is not Unicode whitespace
\n+a line-feed (newline) character (ASCII 10), repeated at least once
Athe literal A (6510 / 1018 / 4116) (case sensitive)
.any Unicode character (except for line terminators)
*?matches any number of characters from the set below:
\sa Unicode whitespace character
\Sany character that is not Unicode whitespace
\n+a line-feed (newline) character (ASCII 10), repeated at least once
Bthe literal B (6610 / 1028 / 4216) (case sensitive)
.any Unicode character (except for line terminators)
*?matches any number of characters from the set below:
\sa Unicode whitespace character
\Sany character that is not Unicode whitespace
\n+a line-feed (newline) character (ASCII 10), repeated at least once
Cthe literal C (6710 / 1038 / 4316) (case sensitive)
.any Unicode character (except for line terminators)
*?matches any number of characters from the set below:
\sa Unicode whitespace character
\Sany character that is not Unicode whitespace
\n+a line-feed (newline) character (ASCII 10), repeated at least once
Dthe literal D (6810 / 1048 / 4416) (case sensitive)
.any Unicode character (except for line terminators)
*?matches any number of characters from the set below:
\sa Unicode whitespace character
\Sany character that is not Unicode whitespace
\na line-feed (newline) character (ASCII 10)
g modifier: global. Finds all matches instead of stopping after the first