vote up 2 vote down star
2

I want that whenver a user inserts "www." in a comment textarea, the address from "www." until the first space will be a replaced with a link to that address:

"I love www.google.com"
turns into
"I love <a href="www.google.com">www.google.com</a>"

Can you please tell me how to do this? (newbie)

(sorry for posting the earlier question I still don't quite get it).

Should I use preg_match_all()?

flag

79% accept rate
Yes that's it! Works good, thank you strubester and Ozzy. this place ROCKS!!! – Gal Nov 4 at 20:13
2  
Stackoverflow is a very helpful place i agree :D Something you may not know is when you post a question, if you find an answer you agree with most, you should click the Tick next to it so it marks the question as answered. – Ozzy Nov 4 at 20:15

2 Answers

vote up 8 vote down check

Try:

$text = preg_replace('/(www\.[a-zA-Z0-9-]+\.[a-zA-Z\.]{2,})/', '<a href="http://\\1">\\1</a>', $text);
link|flag
vote up 1 vote down
preg_replace('/www\.(*)\.com/',"<a href='www.$1.com'>www.$1.com</a>",$strUrl);

BAH beat me to the punch.

link|flag
That assumes that it is just a .com domain :P and by using (*), your saying that anything can be a domain ^_^ – Ozzy Nov 4 at 20:12
-1 because only .com and we all know how that worked for email addresses (.co.uk email anyone?) – disown Nov 4 at 20:14

Your Answer

Get an OpenID
or

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