Tagged Questions

4
votes
9answers
2k views

Test/expand my email regex

I'm really not confident with Regex, I know some basic syntax but not enough to keep me happy. I'm trying to build a regular expression to check if an email is valid. So far here's what I've got: ...
3
votes
4answers
3k views

Regular Expression for domain from email address

Can anyone help me with a regular expression that will return the end part of an email address, after the @ symbol? I'm new to regex, but want to learn how to use it rather than writing inefficient ...
2
votes
5answers
202 views

Does this e-mail-regex exclude valid addresses?

I tried to create a regular expression which catches all RFC-valid addresses but it's ok if some false-positives come through (though hopefully not so many). This is waht I came up so far: ...
1
vote
5answers
134 views

Python check for valid email address?

Is there a good way to check a form input using regex to make sure it is a proper style email address? Been searching since last night and everybody that has answered peoples questions regarding this ...
1
vote
2answers
199 views

PHP preg_match result

This PHP function working just fine: if (preg_match ("/<(\S+@\S+\w)>.*\n?.*55[0-9]/i",$body,$match)) { echo "found!"; } in This message was created automatically by mail delivery software. ...
1
vote
3answers
490 views

How to write regular expression to match free email accounts?

I'm trying to write a regular expression that checks if an email form field contains a free email address, with no luck. Essentially I need to check if the email contains: hotmail, yahoo, gmail etc ...
0
votes
2answers
130 views

simple regex for email address validation

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: ...
0
votes
1answer
459 views

how to do the validation of email id in MFC?

I used this code for validating email id , im getting few errors i dono how to solve it,,, im new to MFC,, if im silly pls forgive me BOOL CMailDlg::Validate(CString m_sFrom) { m_sFrom = ...
0
votes
5answers
156 views

php regular expression : How to fetch all the email address in a paragraph

I want to fetch all the email address in a paragraph. could you please help me Thanks a lot