I've been looking for a simple regex for URL's, does anybody have one handy that works well? I didn't find one with the zend framework validation classes and have seen several implementations.
Thanks
|
I've been looking for a simple regex for URL's, does anybody have one handy that works well? I didn't find one with the zend framework validation classes and have seen several implementations. Thanks
| |||
|
feedback
|
|
i used this on a few projects, i don't believe i've run into issues, but i'm sure it's not exhaustive:
most of the random junk at the end is to deal with situations like | |||||||||||||
feedback
|
|
Galen is right, filter_var() function is the best way to validate whether a string is URL or not.
It's a bad practice to use regular expressions where is's not necessary. | |||||||||||||||||||||
feedback
|
|
As per the PHP manual - parse_url should not be used to validate a URL. Unfortunately, it seems that Both Therefore in this case - regex is the better method. | |||||||||||
feedback
|
|
Just in case you want to know if the url really exists:
| |||||||
feedback
|
|
there's also | |||
|
feedback
|
|
Edit:
Just my two cents but I've developed this function and have been using it for a while with success. It's well documented and separated so you can easily change it.
| |||||||
feedback
|
|
John Gruber of Daring Fireball has posted a very comprehensive regex for all types of URLs that may be of interest. You can find it here: http://daringfireball.net/2010/07/improved_regex_for_matching_urls | |||
|
feedback
|
|
I don't think that using regular expressions is a smart thing to do in this case. It is impossible to match all of the possibilities and even if you did, there is still a chance that url simply doesn't exist. Here is a very simple way to test if url actually exists and is readable :
(if there is no | ||||
|
feedback
|
|
I've used this one with good success - I don't remember where I got it from
| |||||
feedback
|
|
There is one here. | |||||||
feedback
|
| |||
|
feedback
|
|
The best regexes I've found are here. They are really quite exhaustive and provide lots of separate options for validating individual components. If you click an expression you're given a rendition of it in a selectable language, including PHP. | |||
|
feedback
|
|
Peter's Regex doesn't look right to me for many reasons. It allows all kinds of special characters in the domain name and doesn't test for much. Frankie's function looks good to me and you can build a good regex from the components if you don't want a function, like so:
Untested but I think that should work. Also, Owen's answer doesn't look 100% either. I took the domain part of the regex and tested it on a Regex tester tool http://erik.eae.net/playground/regexp/regexp.html I put the following line:
in the "regexp" section and the following line:
under the "sample text" section. The result allowed the minus character through. Because \S means any non-space character. Note the regex from Frankie handles the minus because it has this part for the first character:
Which won't allow the minus or any other special character. | |||
|
feedback
|
|
As per John Gruber (Daring Fireball): Regex:
using in preg_match():
Here is the extended regex pattern (with comments):
For more details please look at: http://daringfireball.net/2010/07/improved_regex_for_matching_urls | |||
|
feedback
|