\w+any word character, repeated at least once
*repeats the group contents below any number of times:
-the literal - (4510 / 558 / 2D16)
+the literal + (4310 / 538 / 2B16)
.the literal . (4610 / 568 / 2E16)
'the literal ' (3910 / 478 / 2716)
.?optionally matches any character (except for line terminators)
\w+any word character, repeated at least once
@the literal @ (6410 / 1008 / 4016)
\w+any word character, repeated at least once
*repeats the group contents below any number of times:
-the literal - (4510 / 558 / 2D16)
.the literal . (4610 / 568 / 2E16)
\w+any word character, repeated at least once
\.the literal . (4610 / 568 / 2E16)
\w+any word character, repeated at least once
*repeats the group contents below any number of times:
-the literal - (4510 / 558 / 2D16)
.the literal . (4610 / 568 / 2E16)
\w+any word character, repeated at least once
g modifier: global. Finds all matches instead of stopping after the first