Skip to content

Instantly share code, notes, and snippets.

@brendon-codes
Created March 27, 2012 05:21
Show Gist options
  • Save brendon-codes/2212738 to your computer and use it in GitHub Desktop.
Save brendon-codes/2212738 to your computer and use it in GitHub Desktop.
Daring Fireball URL Regex Matcher for JavaScript
function urlMatcher () {
//
// See: http://daringfireball.net
// /2010/07/improved_regex_for_matching_urls
//
return (new RegExp(
"\\b((?:https?://|www\\d{0,3}[\\.]|" +
"[a-z0-9\\.-]+[\\.][a-z]{2,4}/)" +
"(?:[^\\s()<>]+|\\(([^\\s()<>]+|(\\([^\\s()<>]+\\)))*\\))+" +
"(?:\\(([^\\s()<>]+|(\\([^\\s()<>]+\\)))*\\)|[^\\s`!()" +
"\\[\\]{};:'\"\\.,<>?\u00AB\u00BB\u201C\u201D\u2018\u2019]))", "i"
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment