func strings.Split

24 uses

	strings (current package)
		strings.go#L312: func Split(s, sep string) []string { return genSplit(s, sep, 0, -1) }

	crypto/tls
		common.go#L1137: 			labels := strings.Split(name, ".")

	crypto/x509
		root_unix.go#L58: 		dirs = strings.Split(d, ":")
		verify.go#L973: 	for i, part := range strings.Split(host, ".") {
		verify.go#L1024: 	patternParts := strings.Split(pattern, ".")
		verify.go#L1025: 	hostParts := strings.Split(host, ".")

	github.com/gotd/td/tgerr
		error.go#L85: 	parts := strings.Split(e.Message, "_")

	go.opentelemetry.io/otel/trace
		tracestate.go#L123: 	for _, memberStr := range strings.Split(tracestate, listDelimiter) {

	golang.org/x/net/proxy
		per_host.go#L98: 	hosts := strings.Split(s, ",")

	mime
		type_unix.go#L44: 		fields := strings.Split(scanner.Text(), ":")

	net/http
		cookie.go#L67: 		parts := strings.Split(textproto.TrimString(line), ";")
		fs.go#L54: 	parts := strings.Split(name, string(sep))
		fs.go#L897: 	for _, ra := range strings.Split(s[len(b):], ",") {
		h2_bundle.go#L6047: 		for _, key := range strings.Split(v, ",") {
		h2_bundle.go#L7044: 	for _, f := range strings.Split(v, ",") {
		server.go#L1534: 	for _, f := range strings.Split(v, ",") {

	nhooyr.io/websocket
		accept.go#L316: 		vals := strings.Split(extStr, ";")
		accept.go#L336: 		for _, t := range strings.Split(v, ",") {

	path/filepath
		path_unix.go#L38: 	return strings.Split(path, string(ListSeparator))

	runtime/debug
		mod.go#L200: 			elem := strings.Split(line[len(modLine):], tab)
		mod.go#L207: 			elem := strings.Split(line[len(depLine):], tab)
		mod.go#L215: 			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#L594: 		l.slice = strings.Split(l.orig, ".")