Ruby code to extract host from URL string - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T11:26:53Zhttp://stackoverflow.com/feeds/question/278622http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/278622/ruby-code-to-extract-host-from-url-string3Ruby code to extract host from URL stringMichael Glenn2008-11-10T17:45:47Z2008-11-10T18:18:24Z
<p>I'm looking for a method to reliably extract the host name from a URL string in Ruby.</p>
<p>e.g.
<a href="http://www.mglenn.com/directory" rel="nofollow">http://www.mglenn.com/directory</a> = www.mglenn.com
OR
<a href="http://www.mglenn.com?param=x" rel="nofollow">http://www.mglenn.com?param=x</a> = www.mglenn.com</p>
http://stackoverflow.com/questions/278622/ruby-code-to-extract-host-from-url-string/278673#27867317Answer by glenatron for Ruby code to extract host from URL stringglenatron2008-11-10T18:07:43Z2008-11-10T18:07:43Z<p>You could try something like this:</p>
<pre><code>require 'uri'
myUri = URI.parse( 'http://www.mglenn.com/directory' )
print myUri.host
</code></pre>