Skip to content

Instantly share code, notes, and snippets.

@TheCodeEngine
Created September 7, 2013 14:10
Show Gist options
  • Save TheCodeEngine/6475893 to your computer and use it in GitHub Desktop.
Save TheCodeEngine/6475893 to your computer and use it in GitHub Desktop.
Extract URL from Text
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