I need regular expression that converts links in plain text to HTML links.
Here are the following test links:
http://www.a-domain.com/something/?something
www.a-domain.com/something/?something
The regular expression should also work under the following assumptions:
Anything attached to the URL that isn't a part of the URL (a comma or period, for example) should be ignored. I found this one, but it does not meet all of my needs.
Does anyone have the right regular expression for my needs?