vote up 0 vote down star
2

In regards to this: http://stackoverflow.uservoice.com/pages/general/suggestions/103227-parser-does-not-match-all-valid-urls is this regex adequate or will it need to be refined, if it needs to be refined how so?

\b(?P<link>(?:.*?://)[\w\-\_\.\@\:\/\?\#\=]*)\b
flag

Unless I missed something, your question is extremely vague, even after clicking through some of the provided links. What are you trying to accomplish? What url formats are you attempting to match? – localshred Jan 20 at 0:39

1 Answer

vote up 4 vote down check

Even though the question is vague, I'll attempt to respond with possible solutions.

Possible Intention 1: To match any URL's in a given file (for replacement):

/^([^:]+):\/\/([-\w._]+)(\/[-\w._]\?(.+)?)?$/ig

The above should match nearly all URL formats, with the following captured groups:

0 => entire match
1 => protocol (eg. html, ftp, git, ...)
2 => hostname (eg. www.stackoverflow.com)
3 => requested_file_path (eg. /images/prod/1/4/success.gif)
4 => query_string (eg. param=1&param2=2&param3=3)

Possible Intention 2: To get details about the current request url

In order to get details about the url such as the protocol, hostname, requested file path, and query string, you're better off using language/object methods to gather the results. In php you can get all of the above information using function calls:

$protocol = $_SERVER['SERVER_PROTOCOL']; // HTTP/1.0
$host = $_SERVER['HTTP_HOST']; // www.stackoverflow.com
$path_to_file = dirname($_SERVER['SCRIPT_NAME']);
$file = basename($_SERVER['SCRIPT_NAME']);
$query_string = $_SERVER['QUERY_STRING'];

Hope this helps in any way.

link|flag
Wish I could add this as a favorite answer – tj111 Feb 24 at 21:22
@tj111 Thanks! I'm glad I could help. You could favorite the question, so you always have a quick way to get back. – localshred Feb 24 at 21:29

Your Answer

Get an OpenID
or

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