i have content stored as raw text in a database that i show in a HTML table on a web site. In the content people refer to numbers and i want to have those numbers automatically become links
For example, in a field i might have
This description is for driving a car. The manual refers to ABC:25920 and is very durable.
In this case above i want ABC:2590 to actually be an html link that translates to this html
<a href='www.mysite.com/parts/25920'>ABC:25920</a>
what is the best way of doing this. Some kind of find and replace ?? is there some other pattern matching / regex solution here?