Go
Go
Parse a URL into its Component Parts
See more HTTP Examples
Demonstrates how to parse a URL into it's component parts.Chilkat Go Downloads
success := false
url := chilkat.NewUrl()
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..
fmt.Println("URL: ", urlStr)
fmt.Println("Host: ", url.Host())
fmt.Println("Port: ", url.Port())
fmt.Println("HostType: ", url.HostType())
fmt.Println("Ssl: ", url.Ssl())
fmt.Println("Path: ", url.Path())
fmt.Println("Query: ", url.Query())
fmt.Println("Frag: ", url.Frag())
fmt.Println("----")
urlStr = "http://matt:secret@www.chilkatsoft.com:8080/somepath.asp?test=123&size=2"
success = url.ParseUrl(urlStr)
// Assume success..
fmt.Println("URL: ", urlStr)
fmt.Println("Host: ", url.Host())
fmt.Println("Port: ", url.Port())
fmt.Println("HostType: ", url.HostType())
fmt.Println("Ssl: ", url.Ssl())
fmt.Println("Login: ", url.Login())
fmt.Println("Password: ", url.Password())
fmt.Println("Path: ", url.Path())
fmt.Println("Query: ", url.Query())
fmt.Println("Frag: ", url.Frag())
url.DisposeUrl()