Does anybody know of a good library out there for taking a string of text and using regex (or whatever you want) to parse out any urls to links? For example:
Input: I found this great site called google.com. You can e-mail the webmaster at [email protected].
Output: I found this great site called <a href="http://google.com">google.com</a>. You can e-mail the webmaster at <a href="mailto:[email protected]">[email protected]</a>.