GO语言"net/url"包中"URL.Hostname"类型的用法及代码示例。
用法:
func(u *URL) Hostname() string
主机名返回 u.Host,如果存在则删除任何有效的端口号。
如果结果包含在方括号中,就像文字 IPv6 地址一样,方括号将从结果中删除。
例子:
package main
import (
"fmt"
"log"
"net/url"
)
func main() {
u, err := url.Parse("https://example.org:8000/path")
if err != nil {
log.Fatal(err)
}
fmt.Println(u.Hostname())
u, err = url.Parse("https://[2001:0db8:85a3:0000:0000:8a2e:0370:7334]:17000")
if err != nil {
log.Fatal(err)
}
fmt.Println(u.Hostname())
}
输出:
example.org 2001:0db8:85a3:0000:0000:8a2e:0370:7334
相关用法
- GO URL.EscapedPath用法及代码示例
- GO URL.Port用法及代码示例
- GO URL.ResolveReference用法及代码示例
- GO URL.Query用法及代码示例
- GO URL.Redacted用法及代码示例
- GO URL.Parse用法及代码示例
- GO URL.String用法及代码示例
- GO URL.UnmarshalBinary用法及代码示例
- GO URL.EscapedFragment用法及代码示例
- GO URL.MarshalBinary用法及代码示例
- GO URL.RequestURI用法及代码示例
- GO URL.IsAbs用法及代码示例
- GO URL用法及代码示例
- GO UDPConn.WriteTo用法及代码示例
- GO Unmarshal用法及代码示例
- GO UnaryOp用法及代码示例
- GO Unsetenv用法及代码示例
- GO Unquote用法及代码示例
- GO Unwrap用法及代码示例
- GO UnquoteChar用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 URL.Hostname。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。