Skip to content

Instantly share code, notes, and snippets.

@Kasahs
Created September 9, 2015 11:24
Show Gist options
  • Save Kasahs/25cb91ae5acb2db29181 to your computer and use it in GitHub Desktop.
Save Kasahs/25cb91ae5acb2db29181 to your computer and use it in GitHub Desktop.
function findUrlsAndPlaceAnchorTags(str) {
var urlRegex = /((http|https|ftp|ftps)\:\/\/)([a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}(\/\S*)?)/g;
return str.replace(urlRegex, function(match, p1, p2, p3){
return "<a href='"+ match +"'>" + p3 + "</a>";
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment