Sample code for 30+ languages & platforms
Ruby

Parse a URL into its Component Parts

See more HTTP Examples

Demonstrates how to parse a URL into it's component parts.

Chilkat Ruby Downloads

Ruby
require 'chilkat'

success = false

url = Chilkat::CkUrl.new()

urlStr = "https://www.amazon.com/Anarchy-State-Utopia-Robert-Nozick/dp/0465051006/ref=sr_1_1?s=books&ie=UTF8&qid=1430344305&sr=1-1&keywords=nozick#frag123"

success = url.ParseUrl(urlStr)
# Assume success..

print "URL: " + urlStr + "\n";
print "Host: " + url.host() + "\n";
print "Port: " + url.get_Port().to_s() + "\n";
print "HostType: " + url.hostType() + "\n";
print "Ssl: " + url.get_Ssl().to_s() + "\n";
print "Path: " + url.path() + "\n";
print "Query: " + url.query() + "\n";
print "Frag: " + url.frag() + "\n";
print "----" + "\n";

urlStr = "http://matt:secret@www.chilkatsoft.com:8080/somepath.asp?test=123&size=2"

success = url.ParseUrl(urlStr)
# Assume success..

print "URL: " + urlStr + "\n";
print "Host: " + url.host() + "\n";
print "Port: " + url.get_Port().to_s() + "\n";
print "HostType: " + url.hostType() + "\n";
print "Ssl: " + url.get_Ssl().to_s() + "\n";
print "Login: " + url.login() + "\n";
print "Password: " + url.password() + "\n";
print "Path: " + url.path() + "\n";
print "Query: " + url.query() + "\n";
print "Frag: " + url.frag() + "\n";