vote up 9 vote down star
6

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>"); 
}
flag

60% accept rate

5 Answers

vote up 14 vote down check

Add a "g" to the end of the Regex to enable global matching.

/ig;

e.g:

function replaceURLWithHTMLLinks(text) {
  var exp = /(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig;
  return text.replace(exp,"<a href='$1'>$1</a>"); 
}
link|flag
vote up 1 vote down

You might also want to look at how the URL Tool for Ubiquity finds urls

link|flag
vote up 0 vote down

I had to do the opposite, and make html links into just the URL, but I modified your regex and it works like a charm, thanks :)

var exp = /<a\s.*href=['"](\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])['"].*>.*<\/a>/ig;

source = source.replace(exp,"$1");
link|flag
I don't see the point of your regex. It matches everything replacing everything with everything. In effect your code does nothing. – Chad Grant Apr 27 at 3:24
I guess I should wait to comment to allow for people to finish editing. sorry. – Chad Grant Apr 27 at 3:27
vote up 0 vote down

works pretty well for me

link|flag
vote up 0 vote down

I wrote a slight modification, and made it a jQuery extension. I needed to both preserve non link html elements and avoid getting weird nesting when links already existed in that html.

jQuery.fn.replaceURLsWithHTMLLinks = function() {
   // Remove existing links (to avoid weird nesting when adding later)
 var html = this.html();
 var exp = /<a\s.*href=['"](\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])['"].*>.*<\/a>/ig;
 var htmlMinusLinks = html.replace(exp,"$1");
   // Then add links
 exp = /(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig;
   var htmlWithLinks = htmlMinusLinks.replace(exp,"<a href='$1' target='_blank'>$1</a>");
 this.html( htmlWithLinks);
 return this;
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.