DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Convert Links In Text To Html
I'm not sure of a great way to match cnn.com with this... but it works for the other urls in the text string.
body_html = "I hate cnn.com and www.cnn.com even http://cnn.com and OMFG especially http://www.cnn.com and https://cnn.com" regex = Regexp.new '((https?:\/\/|www\.)([-\w\.]+)+(:\d+)?(\/([\w\/_\.]*(\?\S+)?)?)?)' body_html.gsub!( regex, '<a href="\1">\1</a>' )





