i am using the next function to match urls inside a given text and replace them for html links. The regex is working great but currently i am only replacing the first match.
Does anyone knows how I can replace all the url? I guess i should be using exec command but i did not really figured how to do it.
function replaceURLWithHTMLLinks(text) {
var exp = /(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/i;
return text.replace(exp,"<a href='$1'>$1</a>");
}
