Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using this PHP function for validate an URL.

$url = preg_replace("/[^A-Za-z0-9-\/\.\:]/", "", trim($url));
$url = preg_replace('%^(?!https?://www\.).*%', 'http://www\.$0', $url);

But, this isn't perfect for me. I want to this controls :

1 - Is it starting with http:// or https:// ? If not, add http (or https)

2 - If it hasn't subdomain and if it hasn't www , add . But if it has subdomain don't add www.

Examples :

**example.com**
CONVERT -> http://www.example.com
**www.example.com**
CONVERT -> http://www.example.com
**subdomain.example.com**
CONVERT -> http://subdomain.example.com
**http://subdomain.example.com**
CONVERT -> http://subdomain.example.com

So, i need improve my REGEX pattern. But i can't. How can i use this ?

share|improve this question
The first regex will strip too many valid charactes from any existing url path and fail on any newfangled http://[::1]/~user/a+b?x=1#2. – mario Jan 8 '11 at 21:36
possible duplicate of regex problem with url – Andy Lester Mar 20 '11 at 20:40

2 Answers

Try to read from this list url regex stackverflow

share|improve this answer
thanks, but i already read these. But i can't adapt these to my code. – Eray Jan 8 '11 at 21:14

Remove the www\. from the second regex. This would make it work on the subdomain examples.

If you want to make it more intelligent, use an if and a second regex to check for ^(\w+://)?\w+\.\w+$ prior prefixing it with http:// or an extra www.

share|improve this answer
how can i use 2nd regex with PHP ? – Eray Jan 8 '11 at 21:48
use preg_match – mario Jan 8 '11 at 21:52
preg_match("^(\w+://)?\w+\.\w+$", $url) ? – Eray Jan 8 '11 at 23:16
needs regex enclosures, but yes – mario Jan 8 '11 at 23:21
Can you send exactly php codes for me? please – Eray Jan 9 '11 at 14:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.