> We have a fairly simple redirect script a url is entered, and even tho
there are
> directions to not enter the "http://www"; sometimes we get it or
"http://";...
> what is the simplest method to extract just the domain name if a
> "http://www.somedomain_name.com"; or "http://somedomain_name.com"; is enter
so we
> can extract just the "somedomain_name.com"

$domain =~ s{^(http:(//)?)?(www.)?}{};


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to