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:
...
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
491 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
3answers
176 views
function for validating email addresses
I am using this function for validating email addresses,
but it doesn’t work if the email address is like this:
name@server.com.
OR
//name@server.com
Is there a way to develop this function?
...
0
votes
8answers
172 views
PHP email address validation question
I was wondering how can I just check if an @ sign has been included when an email address is entered into the input box? I'm using PHP.
Here is my php code.
if (isset($_POST['email']) && ...
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
-1
votes
1answer
25 views
Is it possible to fetch email address of facebook restaurant (or any individual category) page owners? [closed]
Is it possible to fetch email address for facebook restaurant (or any individual category) page owners?
I want email addresses of all the restaurant page owners.
-2
votes
1answer
21 views
Create new mail addresses on mail server using PHP $_POST data [closed]
We have a mail server and we want to create new mail addresses with user submitted details. Is it possible to do it with php?