views:

84

answers:

2

H guys,

I need to validate an email address which was in the format [email protected]

As I am new I dont know how to validate the email address.

Please guys suggest me how to get out of this.

Hope I will get quick response from you guys.

Thanks in advance, Monish.

+1  A: 

Hi!

there you will find the answer :-) http://stackoverflow.com/questions/800123/best-practice-for-validating-email-address

Xarem
+1  A: 

Same way you validate it in any language: examine the string directly, use a regex, etc.

Do some google searches on email validation first though. You'll find it's an area that's incredibly difficult to get right.

Wade Williams