Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am writing BBCode for my own forum (based on PHP). How do you find out if it is an invalid URL provided in the the [url] tag? Which characters make a URL invalid?

To extend my main question, are these valid URLs?—

  • example.com/file[/].html
  • http://example.com/file[/].html
share|improve this question
To extend my main question, is this a valid url: example.com/file[/].html – good Oct 10 '09 at 14:10
According to other answers - Yes it is a valid url. – Maiku Mori Oct 11 '09 at 14:36
4  
When validating, you should always "think positive": ask for "what is valid", everything else is invalid. Testing against the (few) valid characters is much safer (and easier!) than all possible invalid ones. – mfx Dec 3 '09 at 15:50
1  
according to Dominic, no, square brackets within the path are not valid – philfreo Mar 10 '10 at 8:06

9 Answers

In general URIs as defined by RFC 3986 may contain any of the following characters: ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-._~:/?#[]@!$&'()*+,;=. Any other character needs to be encoded with the percent-encoding (%hh). Each part of the URI has further restrictions about what characters need to be represented by an percent-encoded word.

share|improve this answer
2  
rfc1738 is outdated. – Eamon Nerbonne May 31 '11 at 8:12
3  
(of course, the list of characters doesn't state where in the uri they may occur) – Eamon Nerbonne May 31 '11 at 8:22
17  
Here's a regex that will determine if the entire string contains only the characters above: /^[!#$&-;=?-[]_a-z~]+$/ – Leif Wickland Oct 7 '11 at 17:01
2  
@techiferous, Yeah, I forgot to allow "%" escaped characters. It should've looked more like: /^([!#$&-;=?-[]_a-z~]|%[0-9a-fA-F]{2})+$/ Was there anything else that you found it should've been accepting? (Just to be clear, that regex only checks if the string contains valid URL characters, not if the string contains a well formed URL.) – Leif Wickland Dec 13 '11 at 19:28
6  
@Weeble My regex included those characters by using ranges. Between '&' and ';' and between '?' and '[' you'll find all those characters you didn't see. – Leif Wickland Jul 2 '12 at 16:57
show 14 more comments

It is not just a matter of which characters. Different characters are legal at different points. For example, according to RFC 2396, an unescaped '?' is legal in the fragment part but not the path part.

You need to read RFC 2396 to understand the details ... or ask a more specific question. Or if you really mean URI rather than URL the RFC 3986 is what you should be reading.


You asked if example.com/file[/].html is a valid URL.

I agree with Dominic Sayers - No. A URL must have an explicit scheme, such as "http", followed by a ':'.

But Dominic then goes on to say that http://example.com/file[/].html is not a valid URL either, and that is not so clear-cut.

The '[' and ']' characters are <reserved> characters and should be percent escaped if not used as delimiters in the scheme-specific syntax. The spec says:

"URI producing applications should percent-encode data octets that correspond to characters in the reserved set unless these characters are specifically allowed by the URI scheme to represent data in that component."

(Note - the operative work here is "should", and not "shall" or "must". This is advisory, not prescriptive.)

The next sentence of the spec says this:

"If a reserved character is found in a URI component and no delimiting role is known for that character, then it must be interpreted as representing the data octet corresponding to that character's encoding in US-ASCII."

(Note that the operative word is "must". This is saying what a URI means if someone ignores the advice of the previous sentence.)

So how does this apply here? Well HTTP is a "hierarchical" scheme, and the generic ABNF for hierarchical schemes doesn't say that '[' or ']' are delimiters in a <path>. On the other hand, the ABNF does say that a <path segment> consists of <unreserved> characters, <sub-delimiters>, percent-encoded characters, ':' or '@'. In other words, '[' or ']' are not allowed by a strict reading of the ABNF.

So, strictly "http://example.com/file[/].html" is not valid. But if you do encounter such a URL (and don't decide to reject it), the earlier part of the spec says that the '[' and ']' characters must be treated as data characters. So, the URL would parse as:

  • scheme == "http"
  • authority == "example.com"
  • path == "/file[/].html"

And the path should parse as '/' <segment> '/' <segment> where the first segment is "file[" and the second one is "].html"

share|improve this answer
The first # will mark the begin of the fragment. So placing a plain # in the query is not possible. – Gumbo Oct 10 '09 at 13:50
@Gumbo: oops ... bad example. I'll fix it. – Stephen C Oct 11 '09 at 14:20

In your supplementary question you asked if www.example.com/file[/].html is a valid URL.

That URL isn't valid because a URL is a type of URI and a valid URI must have a scheme like http: (see RFC 3986).

If you meant to ask if http://www.example.com/file[/].html is a valid URL then the answer is still no because the square bracket characters aren't valid there.

The square bracket characters are reserved for URLs in this format: http://[2001:db8:85a3::8a2e:370:7334]/foo/bar (i.e. an IPv6 literal instead of a host name)

It's worth reading RFC 3896 carefully if you want to understand the issue fully.

share|improve this answer
After reading the RFC, I'm more inclined to agree with @Stephen C more detailed explanation. – skolima Dec 14 '11 at 8:41
A URLs are not a subset of URI. The [ and ] are not URI valid for almost parsers I have seen. This has actually screwed me in the real world: stackoverflow.com/questions/11038967/… – Adam Gent May 16 at 0:40

All valid characters that can be used in a URI (a URL is a type of URI) are defined in RFC 3986.

All other characters can be used in a URL provided that they are "URL Encoded" first. This involves changing the invalid character for specific "codes" (usually in the form of the percent symbol (%) followed by a hexadecimal number).

This link, HTML URL Encoding Reference, contains a list of the encodings for invalid characters.

share|improve this answer

To add some clarification, there are several classes of characters that cause problems for URLs and URIs. There are some characters that are disallowed (or reserved) and should never appear in a URL/URI and other characters that may cause problems in some cases but are marked as "unwise" or "unsafe". Explanations for why the characters are restricted are listed in RFC1738 (URLs) and RFC2396 (URIs). Note these explicit details were removed from the updated RFC 3986.

Excluded US-ASCII Characters disallowed within the URI syntax:

   control     = <US-ASCII coded characters 00-1F and 7F hexadecimal>
   space       = <US-ASCII coded character 20 hexadecimal>
   delims      = "<" | ">" | "#" | "%" | <">

List of unwise characters are allowed but may cause problems:

   unwise      = "{" | "}" | "|" | "\" | "^" | "[" | "]" | "`"

Also note within a query component, the following characters are reserved and have special meaning within a URI/URL:

  reserved    = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | ","

Here is an example of a URL that has invalid characters and should be properly encoded:

http://mw1.google.com/mw-earth-vectordb/kml-samples/gp/seattle/gigapxl/$[level]/r$[y]_c$[x].jpg

Note that the '|' (0x7C) character although only marked as "unwise" in the URI spec will throw a URISyntaxException in the Java URI constructor so a URL like http://api.google.com/q?exp=a|b is not allowed and must be encoded instead as http://api.google.com/q?exp=a%25b if using Java and the URI class.

share|improve this answer

use urlencode to allow arbitrary charachters in your url

share|improve this answer

See 'regex for url validation' in a previous stackoverflow question.

share|improve this answer
2  
But note the answer that says that using regexs for checking URLs is risky. – Stephen C Mar 2 '11 at 1:10

Not really an answer to your question but validating url's is really a serious p.i.t.a You're probably just better off validating the domainname and leave query part of the url be. That is my experience. You could also resort to pinging the url and seeing if it results in a valid response but that might be too much for such a simple task.

Regular expressions to detect url's are abundant, google it :)

share|improve this answer

The correct answer seems to be in this w3c spec from 1994:

http://w3.org/Addressing/URL/url-spec.txt

See the section titled "BNF for specific URL schemes"

Reading that spec in relation to your examples:

example.com/file[/].html

This url is not valid because it lacks a scheme. But we can default to http:// in such cases:

http://example.com/file[/].html

This is still invalid because [] must be encoded. We can see chrome agrees. From chrome's console:

> encodeURIComponent("[]");
  "%5B%5D"
share|improve this answer

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.