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

should be more generic, the a shouldn't count, although the @ should.

/@(foo|bar|baz)\./
@(foo|bar|baz)(?:\W|$)/

Here is a good reference on regex.

edit: to add '.' change ending to allow end of pattern or word break. now assuming foo/bar/baz are full domain names.

show/hide this revision's text 3 added 35 characters in body

should be more generic, the a shouldn't count, although the @ should.

/@(foo|bar|baz)/
@(foo|bar|baz)\./

Here is a good reference on regex.

edit: to add '.' ending.

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

should be more generic, the a shouldn't count, although the @ should.

/@(foo|bar|baz)/

Here is a good reference on regex.

show/hide this revision's text 1