Skip to content

Instantly share code, notes, and snippets.

@mwmitchell
Forked from searls/gist:1033143
Last active August 29, 2015 14:09
Show Gist options
  • Save mwmitchell/0ac8fd855767c0860548 to your computer and use it in GitHub Desktop.
Save mwmitchell/0ac8fd855767c0860548 to your computer and use it in GitHub Desktop.
//Gruber wrote this regex for matching URLs, but it took a small amount of massage to use it in JavaScript. So here.
//Sauce: http://daringfireball.net/2010/07/improved_regex_for_matching_urls
var p = /^\b((?:https?:\/\/|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}\/)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'".,<>?«»“”‘’]))/i;
p.exec('party fun www.twitter.com yay') //winning.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment