I need valid regexp for email seperated by " " and ends with @a.com or b.com
for example:
valid email string: "email1@a.com email2@b.com email3@a.com"
invalid email string: "email1@a.com email2@b.com email3@c.com"
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try this:
^(.@(a|b).com(|\s)$
Permalink – try entering an invalid string like “c.com” and see that it works too
Regexpal is a nice easy tool to start working on making regex for whatever problem you are trying to solve!