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+&@#/%=~_|!:,.;]*)?
|
|
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:
|
||
|
|
|
According to RFC2396:
|
||
|
|
|
adding that RegEx as a wiki answer:
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.
|
||||
|
|
|
Similar questions:
only to mention those I saw in the first page of URL tag... |
||
|