vote up 3 vote down star

I'm looking for a method to reliably extract the host name from a URL string in Ruby.

e.g. http://www.mglenn.com/directory = www.mglenn.com OR http://www.mglenn.com?param=x = www.mglenn.com

flag

1 Answer

vote up 17 vote down check

You could try something like this:

require 'uri'

myUri = URI.parse( 'http://www.mglenn.com/directory' )
print myUri.host
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.