up vote 1 down vote favorite
share [g+] share [fb]

I have a e-mail address validator but I need to add special characters as valid for example ü, ç... Because users in Turkey (or anywhere else) can have a web site url like: hasangürsoy.com My code is below:

<asp:TextBox ID="tEMail" runat="server" />
<asp:RequiredFieldValidator ID="rfvEMail" runat="server"
    ControlToValidate="tEMail" ErrorMessage="* required" />
<asp:RegularExpressionValidator ID="revEMail" runat="server"
    ControlToValidate="tEMail" ErrorMessage="* invalid"
    ValidationExpression="\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*" />
link|improve this question

Okay I've rewriten the expression like this: \w+[\wçığöşü]+([-+.']\w+)*@\w+[\wçığöşü]+([-.]\w+)*\.\w+([-.]\w+)* the only problem is the e-mail address and domain should start with normal character (not çığöşü). If I solve this problem the work will be done – Hasan Gürsoy Mar 31 '10 at 6:28
feedback

3 Answers


\w+([ü,ç,other characters here][-+.']\w+)*@\w+([ü,ç,,other characters here][-.]\w+)*\.\w+([ü,ç,,other characters here][-.]\w+)*
link|improve this answer
This does not validate my man, sorry – Hasan Gürsoy Mar 29 '10 at 13:59
feedback

You can use the special format "\u00fc" to specify the hex value of the char. Look at the table here http://www.ascii.cl/htmlcodes.htm

link|improve this answer
Could you please explain how to use this in the expression? – Hasan Gürsoy Mar 29 '10 at 14:00
Like any other backslash operator like \. (dot character) [\.\u00fc\u00e7]+ – Jacee Apr 19 '10 at 14:51
feedback
up vote 0 down vote accepted

Okay I did it:

<asp:RegularExpressionValidator ID="revEMail" runat="server"
    ControlToValidate="tEMail" ErrorMessage="* invalid" Display="Dynamic"
    ValidationExpression="\w*[\wçığöşü]+([-+.']\w+)*@\w*[\wçığöşü]+([-.]\w+)*\.\w+([-.]\w+)*" />
link|improve this answer
Be careful, if you use this e-mail validation expression the mail address can't pass validation when you try to use it for example ReplyTo address. – Hasan Gürsoy Apr 9 '10 at 17:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.