-
-
Save boy-jer/dfba275d41403f7acbb3 to your computer and use it in GitHub Desktop.
@gruber's improved regex for matching URLs written in Ruby
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# From @gruber http://daringfireball.net/2010/07/improved_regex_for_matching_urls | |
#http://ryanangilly.com/post/8654404046/grubers-improved-regex-for-matching-urls-written | |
UrlRegex = /\b((?:https?:\/\/|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}\/?)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s\`!()\[\]{};:\'\".,<>?«»“”‘’]))/i |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment