Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ExampleURL_roundtrip (0.23 sec)

  1. src/net/url/example_test.go

    	}
    	u.Scheme = "https"
    	u.Host = "google.com"
    	q := u.Query()
    	q.Set("q", "golang")
    	u.RawQuery = q.Encode()
    	fmt.Println(u)
    	// Output: https://google.com/search?q=golang
    }
    
    func ExampleURL_roundtrip() {
    	// Parse + String preserve the original encoding.
    	u, err := url.Parse("https://example.com/foo%2fbar")
    	if err != nil {
    		log.Fatal(err)
    	}
    	fmt.Println(u.Path)
    	fmt.Println(u.RawPath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.2K bytes
    - Viewed (0)
Back to top