greens85 Posted April 8, 2011 Share Posted April 8, 2011 Hi All, I guess there must be someway to do this with regex, but I'm not too hot on regex. What I want to do is check a text area for the presence of a phone number, and if it is there remove it. Ideally I don't want to remove all number as there might be a need for them to use a number, for example... I am 25 years old would be fine, but entering their number wouldn't be. Is there anyway of tacking this with regex, or is it going to be tricky? Many thanks, Greens85 Quote Link to comment https://forums.phpfreaks.com/topic/233062-check-for-phone-numbers-in-textarea-using-php/ Share on other sites More sharing options...
spiderwell Posted April 8, 2011 Share Posted April 8, 2011 you would use reg exp to do it, but I am not very good at them. someone will be along in a minute. Quote Link to comment https://forums.phpfreaks.com/topic/233062-check-for-phone-numbers-in-textarea-using-php/#findComment-1198618 Share on other sites More sharing options...
dcro2 Posted April 8, 2011 Share Posted April 8, 2011 Quite tricky, since phone numbers can be formatted in so many different ways. This is my attempt: preg_replace("/\+?[0-9() -]{7,18}/", "", $text); That'll replace anything resembling a phone number, "5555555", "+62 (555) 555-5555", etc. As long as it's at least 7 numbers long. Quote Link to comment https://forums.phpfreaks.com/topic/233062-check-for-phone-numbers-in-textarea-using-php/#findComment-1198742 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.