Linked Questions

1 vote
5 answers
15k views

Possible Duplicate: What is the best regular expression for validating email addresses? I am using this particular regular expression for checking emails. "^[A-Za-z0-9](([a-zA-Z0-9,=\.!\-#|\$%\^&...
AgentHunt's user avatar
  • 669
2 votes
3 answers
22k views

I want to find valid email addresses in a text file, and this is my code: email = re.findall(r'[a-zA-Z\.-]+@[\w\.-]+',line) But my code obviously does not contain email addresses where there are ...
Parker's user avatar
  • 303
2 votes
4 answers
12k views

I need a Regex that matches an email-adress, local@domain with following requirements: Local-part can contain A-z, 0-9, dot, underscore and dash. Domain can contain A-z, 0-9, dot and dash. The ...
John Lag's user avatar
1 vote
6 answers
9k views

I need to validate an email pattern which starts with an alphabat and ends with @gmail.com. Following is my code. public static boolean isValidEmail(String email) { String endPattern = "@gmail....
Zeeshan's user avatar
  • 12.5k
4 votes
4 answers
7k views

Possible Duplicate: What is the best regular expression for validating email addresses? I tried the reg expression ^([a-zA-Z0-9_.-])+@([a-zA-Z0-9_.-])+\.([a-zA-Z])+([a-zA-Z])+ for the email ...
Mohammad Nadeem's user avatar
0 votes
4 answers
1k views

Possible Duplicates: Email Validation - Regular Expression What is the best regular expression for validating email addresses? Hi All, I have an email address roughly like this, firstname....
peter's user avatar
  • 13.6k
0 votes
3 answers
11k views

I know there are so many repeated questions in stack but i didn't found any help, so please help me. Email should be like this, "[email protected];[email protected]; [email protected] ; [email protected] ;[email protected];" I ...
Mahesh Kalyankar's user avatar
-1 votes
0 answers
32k views

Possible Duplicate: What is the best regular expression for validating email addresses? Does anyone have a good email regular expression? I'm writing in .NET 2.0 if that matters...
Albert's user avatar
  • 3,689
1 vote
2 answers
6k views

I have code in console app reg = new Regex(@"/[a-z0-9_\-\+]+@[a-z0-9\-]+\.([a-z]{2,3})(?:\.[a-z]{2})?/i"); string text = "wjeqklejqwek [email protected] a;lekqlwe [email protected]"; ...
user3150998's user avatar
3 votes
2 answers
6k views

I have a list of email addresses and I want to check if they are a valid email address for GMail. Possible email addresses "[email protected]" "[email protected]" "[email protected]" "...
E.O's user avatar
  • 95
3 votes
3 answers
2k views

Possible Duplicate: What is the best regular expression for validating email addresses? I'm using a form which ask for email address. I used regular expression for it as .*@.*\..* But it is not ...
Nagarajan Ganesh's user avatar
4 votes
1 answer
721 views

Possible Duplicate: What is the best regular expression for validating email addresses? I am a new user in stackOverflow. I have a query which is related with regular expression in PERL. I want to ...
Dhaval's user avatar
  • 41
1 vote
3 answers
9k views

I'm doing a registration form where people can register, in that I will be asking for thier email address's If i could put a regex validation that captures any other emails example: [email protected], ...
Suits999's user avatar
  • 369
1 vote
1 answer
6k views

I need to make email validation on client side same with FILTER_VALIDATE_EMAIL. So what would be the equivalent regex on javascript with the FILTER_VALIDATE_EMAIL? I found that FILTER_VALIDATE_EMAIL ...
biox's user avatar
  • 1,576
1 vote
1 answer
5k views

I have the following code for Email ID validation. I am using the Regular expression to do it. However the following email Id is coming as invalid. [email protected] What should be changed in the ...
NewUnhandledException's user avatar

15 30 50 per page
1
2
3 4 5
59