Quote:
|
Originally Posted by marek_mar
It's becouse the .co matches with the "[a-z0-9._-]+" part just after the @.
From:
email@site.co.uk
it matches like this:
[a-z0-9._-]+ => email
@ => @
[a-z0-9._-]+ => site.co
\. => .
([a-z]{2,4}) => uk
|
Ahh I see. My apologies.
__________________
"$question = ( to() ) ? be() : ~be();"
|