Ruby code to extract host from URL string - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T11:26:53Z http://stackoverflow.com/feeds/question/278622 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/278622/ruby-code-to-extract-host-from-url-string 3 Ruby code to extract host from URL string Michael Glenn 2008-11-10T17:45:47Z 2008-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#278673 17 Answer by glenatron for Ruby code to extract host from URL string glenatron 2008-11-10T18:07:43Z 2008-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>