Possible Duplicate:
PHP URL to Link with Regex
how to convert some urls in string to <a href="here url">here url</a>?
I'm thinking about preg_replace but what regex to use?
Thanx!
how to convert some urls in string to I'm thinking about preg_replace but what regex to use? Thanx! |
|||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
It's not advised to use regex with html code, as HTML is a context free language, and regular expressions are most advised to use with regular languages. Instead look into DOM libraries, as an easy way to find and replace attributes of html tags: http://php.net/manual/en/book.dom.php |
|||
|
|