Jump to content

Test for email address in string


carole2

Recommended Posts

[quote author=wildteen88 link=topic=101948.msg403973#msg403973 date=1153930842]
Prehaps this [url=http://www.phpfreaks.com/forums/index.php/topic,101005.0.html]thread[/url] might be able to help you out. Look at post number 3 by toplay.
[/quote]

Thanks that was helpful but i would like a reg expression that would allow all text except for an email address, if that is possible.
Link to comment
Share on other sites

You do something like this:
[code]<?php

$text = "Hey my email adddy is abc123@abc.def isnt it nice";

if(preg_match("/([A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4})/i", $text))
{
    echo "Email adddy detected, We do not accept email addresses within strings!";
}
else
{
    echo "No email addy dectected";
}

?>[/code]
Link to comment
Share on other sites

[quote author=wildteen88 link=topic=101948.msg404126#msg404126 date=1153940858]
You do something like this:
[code]<?php

$text = "Hey my email adddy is abc123@abc.def isnt it nice";

if(preg_match("/([A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4})/i", $text))
{
    echo "Email adddy detected, We do not accept email addresses within strings!";
}
else
{
    echo "No email addy dectected";
}

?>[/code]
[/quote]

Thanks..
Yeah thats a possibility i thought of  that already. .. I am using a form class that validates on the server side and the client side. On the client side javascript is created from the reg expression. So i was looking for just a reg expression that would not accept any text that contained an email address. Its not that important as i could validate it on the server side only with the above code. 

Thanks for your input...
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.