func strings.Split

36 uses

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

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

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

	github.com/oapi-codegen/runtime
		bindform.go#L48: 		tag = strings.Split(tag, ",")[0] // extract the name of the tag
		bindform.go#L108: 		tag = strings.Split(tag, ",")[0] // extract the name of the tag
		bindform.go#L189: 			tag = strings.Split(tag, ",")[0] // extract the name of the tag
		bindform.go#L245: 		tag = strings.Split(tag, ",")[0]
		bindform.go#L312: 			tag = strings.Split(tag, ",")[0] // extract the name of the tag
		bindparam.go#L147: 		parts := strings.Split(value, ",")
		bindparam.go#L158: 			parts := strings.Split(value, ".")
		bindparam.go#L172: 			return strings.Split(value[1:], ","), nil
		bindparam.go#L178: 			parts := strings.Split(value, ";")
		bindparam.go#L202: 			return strings.Split(str, ","), nil
		bindparam.go#L207: 			parts = strings.Split(value, "&")
		bindparam.go#L216: 			parts = strings.Split(value, ",")
		bindparam.go#L270: 			propertyParts := strings.Split(property, "=")
		bindparam.go#L435: 			parts = strings.Split(values[0], ",")
		bindparam.go#L511: 			tagParts := strings.Split(tag, ",")
		deepobject.go#L149: 		paths[i] = strings.Split(path, "][")
		deepobject.go#L169: 		parts := strings.Split(tag, ",")
		styleparam.go#L262: 			tagParts := strings.Split(tag, ",")

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

	net/http
		cookie.go#L71: 	parts := strings.Split(textproto.TrimString(line), ";")
		cookie.go#L97: 	parts := strings.Split(textproto.TrimString(line), ";")
		fs.go#L54: 	parts := strings.Split(name, string(sep))
		fs.go#L1017: 	for _, ra := range strings.Split(s[len(b):], ",") {
		h2_bundle.go#L6102: 		for _, key := range strings.Split(v, ",") {
		h2_bundle.go#L7083: 	for _, f := range strings.Split(v, ",") {
		server.go#L1593: 	for _, f := range strings.Split(v, ",") {

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

	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, ".")