vote up 1 vote down star
1

We are using the following to do an email validation in ASP.NET:

\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*

How can this be modified to ignore leading and trailing spaces?

The actual trimming we handle in code on postback but the validator is triggering as being invalid if the user has an extra space often due to copying and paste.

flag

78% accept rate
You should read this: mail.python.org/pipermail/python-list/… – Gumbo Feb 21 at 18:36
Sending a test message is not an option. It needs to be validated as best as possible on the form prior to submission. – schooner Feb 21 at 18:39

3 Answers

vote up 7 vote down

just do the trim before you pass it to the validator

link|flag
It is an asp.net validator linked to a textbox, so not sure that is possible by default. I'd prefer to have the regex handle it if possible. – schooner Feb 21 at 18:31
Why? The spaces are not part of a valid email, so the regex shouldn't see them. Trim the value with an onchange/onsubmit action. – Peter Boughton Feb 23 at 8:50
vote up 4 vote down

Group what you want into a named capture and then allow spaces before and after the capture

\s*(?<email>\w+([-+.']\w+)@\w+([-.]\w+).\w+([-.]\w+)*)\s*
link|flag
Not to forget "^" and "$". – Tomalak Feb 21 at 18:32
vote up 0 vote down

You can place \s* before and after your pattern and it should work properly.

link|flag
Why in the world did Sebastian and I get a down vote? For answering the question 20 seconds later? – localshred Feb 22 at 7:18

Your Answer

Get an OpenID
or

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