func strings.Split
25 uses
strings (current package)
strings.go#L361: func Split(s, sep string) []string { return genSplit(s, sep, 0, -1) }
crypto/tls
common.go#L1341: labels := strings.Split(name, ".")
ech.go#L456: labels := strings.Split(name, ".")
crypto/x509
root_unix.go#L58: dirs = strings.Split(d, ":")
verify.go#L827: for i, part := range strings.Split(host, ".") {
verify.go#L877: patternParts := strings.Split(pattern, ".")
verify.go#L978: return strings.Split(toLowerCaseASCII(strings.TrimSuffix(host, ".")), ".")
github.com/coder/websocket
accept.go#L342: vals := strings.Split(extStr, ";")
accept.go#L362: for _, t := range strings.Split(v, ",") {
github.com/gotd/td/tgerr
error.go#L85: parts := strings.Split(e.Message, "_")
github.com/refraction-networking/utls
common.go#L1337: labels := strings.Split(name, ".")
ech.go#L457: labels := strings.Split(name, ".")
golang.org/x/net/proxy
per_host.go#L100: hosts := strings.Split(s, ",")
mime
type_unix.go#L44: fields := strings.Split(scanner.Text(), ":")
net/http
cookie.go#L95: parts := strings.Split(textproto.TrimString(line), ";")
cookie.go#L121: parts := strings.Split(textproto.TrimString(line), ";")
fs.go#L54: parts := strings.Split(name, string(sep))
h2_bundle.go#L7251: for _, f := range strings.Split(v, ",") {
net/http/internal/httpcommon
httpcommon.go#L571: for _, key := range strings.Split(v, ",") {
path/filepath
path_unix.go#L25: return strings.Split(path, string(ListSeparator))
runtime/debug
mod.go#L210: elem := strings.Split(line[len(modLine):], tab)
mod.go#L217: elem := strings.Split(line[len(depLine):], tab)
mod.go#L225: elem := strings.Split(line[len(repLine):], tab)
vendor/golang.org/x/net/http/httpproxy
proxy.go#L215: for _, p := range strings.Split(c.NoProxy, ",") {
vendor/golang.org/x/net/idna
idna10.0.0.go#L593: l.slice = strings.Split(l.orig, ".")
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |