Possible Duplicate:
PHP Linkify Links In Content
I've got a little stuck with finding text links and wrapping them in A tags.
I'm using this so far / [\w]*\.[a-z]{2,}/i
to find the link which works fine for links like this, stackoverflow.com but it misses www. or anything before hand.
To recap, I'm trying to find all links and wrap in A tags. Non of the text contains the protocol part (http(s)://) or port part which makes it a tad harder.