Skip to content

Instantly share code, notes, and snippets.

@rodolfofadino
Created January 22, 2014 13:29
Show Gist options
  • Save rodolfofadino/8558708 to your computer and use it in GitHub Desktop.
Save rodolfofadino/8558708 to your computer and use it in GitHub Desktop.
Envolver Url em Link
function envolverUrlEmLink(texto){
return texto.replace(/(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig, function($0) {
return "<a href='" + $0 + "' target='_blank'>" + $0 + "</a>"
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment