Skip to content

Instantly share code, notes, and snippets.

@pwlin
Created June 12, 2010 11:25
Show Gist options
  • Save pwlin/435647 to your computer and use it in GitHub Desktop.
Save pwlin/435647 to your computer and use it in GitHub Desktop.
javascript linkify
String.prototype.linkify = function() {
return this.replace(/[A-Za-z]+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&\?\/.=]+/, function(m) {
return m.link(m);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment