Created
November 27, 2009 23:16
-
-
Save schwern/244280 to your computer and use it in GitHub Desktop.
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
qr{ | |
\b | |
( | |
# scheme or schemeless | |
([\w-]+://? | www[.]) | |
# anything but whitespace or brackets | |
[^\s()<>]+ | |
# letters and numbers in parens | |
# or anything but punctuation and whitespace | |
# or a close paren | |
(?: \([\w\d]+\) | | |
([^[:punct:]\s] | /) | |
) | |
) | |
}x; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment