hi
What is meaning Of
Internet E-mail Address: \w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*
French Phone Number : (0( \d|\d ))?\d\d \d\d(\d \d| \d\d )\d\d
Regards
Rushikesh
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Aug 8, 2011, 5:34 AM
Check out this thread:
http://www.c-sharpcorner.com/Forums/Thread/135211/in-email-field-should-not-allow-special-characters.aspx
Amit ChoudharyPosted Aug 8, 2011, 2:43 AM
To understand the regular expressions you should have little knowledge of expression rules. There are numerous article on learning regular expression on web.
for explanation of Email field lets break it...
\w+([-+.']\w+)* means you can have any alphabets and combinations containing - or . in the ID part
@ means address can contain only 1 occurrence of @ symbol
\w+([-.]\w+)* this is again the same as above.
\. means a single . dot can occur after the above words
\w+([-.]\w+)* this is again repeated combination as explained above.
for phone number validation regular expression
(0( \d|\d ))? this means 0 or more combination of single digits starting with 0.
hope this was helpful.
Thanks.