Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need a regex to exclude certain characters such as 'รง' and also to check '@' sign is present. Can someone help?

I am using jquery to do client-side validation using the following expression:

(/^[\w-]+(\.[\w-]+)*@([\w-]+\.)+[\w-]{2,4}$/)
share|improve this question
May I suggest regexlib.com, unless you have a regex of your own that you've written and that you need help with? – J. Steen Jul 25 '11 at 20:34
1  
ç is a legal character in an email address. – BalusC Jul 25 '11 at 20:39
ATM I am using (/^[\w-]+(\.[\w-]+)*@([\w-]+\.)+[\w-]{2,4}$/) but how do I exclude the character mentioned above? – jqs Jul 25 '11 at 20:46
Yes, I am aware that it is a legal character but due to system constraints I have to exclude... – jqs Jul 25 '11 at 20:49

2 Answers

up vote 1 down vote accepted

Chiefly:

function isAValidEmailAddress(emailAddress){
     return /^[a-z0-9_\-\.]{2,}@[a-z0-9_\-\.]{2,}\.[a-z]{2,}$/i.test(emailAddress);
}

Use http://en.wikipedia.org/wiki/Email_address#Syntax for a better regular expression.

share|improve this answer
thnx, let me try this one. – jqs Jul 25 '11 at 21:07

Take a look at this

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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