show/hide this revision's text 2 added 4 characters in body

Use the pipe symbol to indicate "or":

/a@(foo|bar|baz)/
a@(foo|bar|baz)\b/

If you don't want the capture-group, use the non-capturing grouping symbol:

/a@(?:foo|bar|baz)/
a@(?:foo|bar|baz)\b/

(Of course I'm assuming "a" is OK for the front of the email address! You should replace that with a suitable regex.)

show/hide this revision's text 1

Use the pipe symbol to indicate "or":

/a@(foo|bar|baz)/

If you don't want the capture-group, use the non-capturing grouping symbol:

/a@(?:foo|bar|baz)/

(Of course I'm assuming "a" is OK for the front of the email address! You should replace that with a suitable regex.)