On Tue, Oct 04, 2011 at 03:12:58PM -0700, T Elcor wrote:

> Is there a way to write a single Javascript regex that would match all of the 
> following three patterns:
> 
>   a.domain.tld
>   b.domain.tld
>     domain.tld/c/

You could try /^[ab]\.domain\.tld$|^domain\.tld\/c\/$/. If you don't
mind also matching a.domain.tld/c/ and b.domain.tld/c/ then
/^(?:[ab]\.)?domain\.tld(?:\/c\/)?$/ might work.

These are untested as I don't do javascript but cobbled them together
from a quick look at the table on
https://developer.mozilla.org/en/JavaScript/Guide/Regular_Expressions

Cheers,
Tom

-- 
LOAD "LINUX",8,1
                -- Topic on #LinuxGER

Attachment: signature.asc
Description: Digital signature

Reply via email to