Created
September 7, 2013 14:10
-
-
Save TheCodeEngine/6475893 to your computer and use it in GitHub Desktop.
Extract URL from Text
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
require "uri" | |
URI.extract("text here http://foo.example.org/bla and here mailto:[email protected] and here also.") | |
# => ["http://foo.example.org/bla", "mailto:[email protected]"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment