hi, this is my email pattern using javascript.
var emailPat = /^(\".*\"|[A-Za-z]\w*)@(\[\d{1,3}(\.\d{1,3}){3}]|[A-Za-z]\w*(\.[A-Za-z]\w*)+)$/;
this is working fine .
but my problem is i want to add on dot(.) on name part.
ie
KLBAIJU@yahoo.com is working fine.
but i need
KL.BAIJU@YAHOO.COM
some times namepart contains dot(.) some times doesn't contain dot(.)
how it is possible.
Regards
K L BAIJU