vote up 0 vote down star

I need to test for general URLs using any protocol (http, https, shttp, ftp, svn, mysql and things I don't know about).

My first pass is this:

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

(PCRE and .NET so nothing to fancy)

flag

50% accept rate
That expression matches too much (_ isn't allowed in domain names, IIRC, URL can stop after domain name) and not enough (one can find ~ and any %hh character in the path). – PhiLho Nov 20 '08 at 22:51

3 Answers

vote up 2 vote down check

According to RFC2396:

^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?
link|flag
OK so the windows //server/dir/file thing IS a URL? kind of make the file:////server/dir/file in FF/IE look even more bazaar – BCS Nov 20 '08 at 22:55
vote up 1 vote down

adding that RegEx as a wiki answer:

[\w+-]+://([a-zA-Z0-9]+\.)+[[a-zA-Z0-9]+](/[%\w]+)(\?[-A-Z0-9+&@#/%=~_|!:,.;]*)?

option 2 (Re CMS)

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

But that's to lax for anything sane so trimmed to make it more restrictive and to differentiate off other things.

proto      ://  name      : pass      @  server    :port      /path     ? args
^([^:/?#]+)://(([^/?#@:]+(:[^/?#@:]+)?@)?[^/?#@:]+(:[0-9]+)?)(/[^?#]*)(\?([^#]*))?
link|flag
Another possibility is 'svn+ssh://'. I don't think \w would match '+'. – brass-kazoo Nov 20 '08 at 22:46
You are correct, at least in the context of PCRE. – Dave Sherohman Nov 22 '08 at 18:50
vote up 1 vote down

Similar questions:

only to mention those I saw in the first page of URL tag...

link|flag
good links for others (+1), but not what I'm asking for (#1 doesn't cover unknown protocols, #2 & #3 cover finding/altering) – BCS Nov 20 '08 at 22:51

Your Answer

Get an OpenID
or

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