Negated Character Class[^,]* *matches any number of characters outside the set below:
,the literal , (4410 / 548 / 2C16)
,the literal , (4410 / 548 / 2C16)
?optionally matches the literal (3210 / 408 / 2016)
Negated Character Class[^ ]* *matches any number of characters outside the set below:
the literal (3210 / 408 / 2016)
the literal (3210 / 408 / 2016)
Negated Character Class[^ ]* *matches any number of characters outside the set below:
the literal (3210 / 408 / 2016)
the literal (3210 / 408 / 2016)
Negated Character Class[^ ]* *matches any number of characters outside the set below:
the literal (3210 / 408 / 2016)
the literal (3210 / 408 / 2016)
\d*a digit, repeated any number of times
.?optionally matches any character (except for line terminators)
\d*a digit, repeated any number of times
g modifier: global. Finds all matches instead of stopping after the first