How can I linkify URLs which appear in plain text? For example,
Today i want to share a link: http://www.google.com
I would like to make “www.google.com” clickable by putting <a> tags around. Do I have to detect URLs and links with Java string parsing facilities and put <a> tags around them?
You could use the regexp from Matthew O’Riordan’s page to match an URL with or even without the protocol part: