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.
|
3
|
|||||||
|
|
|
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. |
|||
|
|
|
|
This is a very basic check. Regular Expressions can easily get out of control:
This doesn't include the query string section (I guess you could simply add a ? in the check though). |
||
|
|
|
|
This should do the trick:
What is 'best' is another matter... |
||||||
|
|
|
What platform? If using .NET, use |
||||||
|
|
|
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 ;-) |
||
|
|
|
|
For reference purposes, here's the IETF Spec. In particular,
As someone else said, it's probably best to leave this to a lib/framework you're already using. |
||
|
|
|
|
here's what RegexBuddy uses.
it matches these below (inside the |
||
|
|
This is based on my reading of the URI specification.
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. |
|||
|
|
|
Hello eyelidlessness, your answer ist great, thank you very much, but currently not 100% correct: Thats your Domain TLD-Part: => 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 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 |
||
|
|