vote up 7 vote down star
3

I need to check if a given string is a valid URL address.

My knowledge of regular expressions is basic and doesn't allow me to choose from the hundreds of regex i've already seen on the web.

flag

73% accept rate
Any URL or just HTTP? E.g. does mailto:me@example.com count as a URL? A a AIM chat link? – Mecki Oct 2 '08 at 11:01
this is related to stackoverflow.com/questions/82398/… – jamesh Oct 2 '08 at 11:39
What programming language are you using? You probably don't want to reinvent the wheel. – a paid nerd May 11 at 5:49

9 Answers

vote up 11 vote down

The post Getting parts of a URL (Regex) discusses parsing a URL to identify its various components. If you want to check if a URL is well-formed, it should be sufficient for your needs.

If you need to check if it's actually valid, you'll eventually have to try to access whatever's on the other end.

In general, though, you'd probably be better off using a function that's supplied to you by your framework or another library. Many platforms include functions that parse URLs. For example, there's Python's urlparse module, and in .NET you could use the System.Uri class's constructor as a means of validating the URL.

link|flag
vote up 0 vote down

This is a very basic check. Regular Expressions can easily get out of control:

(http|https)://([a-zA-Z0-9.]|%[0-9A-Za-z]|/|:[0-9]?)*

This doesn't include the query string section (I guess you could simply add a ? in the check though).

link|flag
vote up -1 vote down

This should do the trick:

/(ftp|http):\/\/([_a-z\d\-]+(\.[_a-z\d\-]+)+)(([_a-z\d\-\\\.\/]+[_a-z\d\-\\\/])+)*/

What is 'best' is another matter...

link|flag
1  
What about https? – Rich Oct 2 '08 at 18:04
What about gopher ? – Marco van de Voort May 7 at 8:41
vote up 6 vote down

What platform? If using .NET, use System.Uri, not a regex.

link|flag
how would you use system.uri to check for a valid url? – dev.e.loper Mar 31 at 17:15
1  
Uri.TryCreate() returns true if it's valid – Duncan Smart Apr 1 at 9:03
vote up 1 vote down

If you really search for the ultimate match, you probably find it on that page

But a regex that really matches all possible domains and allows anything that is allowed according to RFCs is horribly long and unreadable, trust me ;-)

link|flag
vote up 2 vote down

For reference purposes, here's the IETF Spec. In particular, B. Parsing a URI Reference with a Regular Expression is on point. Here's the regex they provide:

 ^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?

As someone else said, it's probably best to leave this to a lib/framework you're already using.

link|flag
vote up 5 vote down

here's what RegexBuddy uses.

\b(https?|ftp|file)://[-A-Z0-9+&@#/%?=~_|!:,.;]*[-A-Z0-9+&@#/%=~_|]

it matches these below (inside the ** ** marks):
**http://www.regexbuddy.com**
**http://www.regexbuddy.com/**
**http://www.regexbuddy.com/index.html**
**http://www.regexbuddy.com/index.html?source=library**
You can download RegexBuddy at **http://www.regexbuddy.com/download.html**.

link|flag
What about gopher? Poor, forgotten gopher. – toohool Oct 2 '08 at 18:00
80( yes...poor gopher and AOL:keyword.... 8.0( – Keng Oct 2 '08 at 18:46
vote up 10 vote down

This is based on my reading of the URI specification.

/^(https?|ftp):\/\/(?#                                      protocol
)(([a-z0-9$_\.\+!\*\'\(\),;\?&=-]|%[0-9a-f]{2})+(?#         username
)(:([a-z0-9$_\.\+!\*\'\(\),;\?&=-]|%[0-9a-f]{2})+)?(?#      password
)@)?(?#                                                     auth requires @
)((([a-z0-9][a-z0-9-]*[a-z0-9]\.)*(?#                       domain segments AND
)[a-z]{2}[a-z0-9-]*[a-z0-9](?#                              top level domain OR
)|(\d|[1-9]\d|1\d{2}|2[0-4][0-9]|25[0-5]\.){3}(?#
    )(\d|[1-9]\d|1\d{2}|2[0-4][0-9]|25[0-5])(?#             IP address
))(:\d+)?(?#                                                port
))(((\/+([a-z0-9$_\.\+!\*\'\(\),;:@&=-]|%[0-9a-f]{2})*)*(?# path
)(\?([a-z0-9$_\.\+!\*\'\(\),;:@&=-]|%[0-9a-f]{2})*)(?#      query string
)?)?)?(?#                                                   path and query string optional
)(#([a-z0-9$_\.\+!\*\'\(\),;:@&=-]|%[0-9a-f]{2})*)?(?#      fragment
)$/i

Note that username, password, path, query string and fragment allow many more characters than are usually permitted in most validators. Note also that this allows for an IP address and restricts the domain to the spec's requirements (but is not internationalized). Also note that IPv6 is not supported.

It may be "horribly long and unreadable" as has been suggested (I beg to differ, I was able to revisit it after months of not looking at it and make changes and break into logical parts for commenting with no problem), but it is far more correct than the patterns that are usually offered, which generally ignore auth, IP and either disallow special characters which should be allowed in various places, or permit far more than are allowed in the spec.

link|flag
I'm left with one thought: "..." – Jamie Jun 18 at 17:06
vote up 0 vote down

Hello eyelidlessness,

your answer ist great, thank you very much, but currently not 100% correct:

Thats your Domain TLD-Part: [a-z]{2}[a-z0-9-]*[a-z0-9]

=> This leads to 2 letter Country Code Domains being rejected (like .at, .ch .us ...) wrongly although they are valid TLDs!

(I do not know if the "-" sign is really required in the TLD according to the RFCs, I simply use [a-z]{1,20} That not really correct but safe for most of the current TLDs. A better fix might simply be [a-z]{1}[a-z0-9-]*[a-z0-9])

I acutally wanted to post this as a comment but it seems I do not have the rights to post commenst, as I have to few points...

regards jan

link|flag

Your Answer

Get an OpenID
or

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