func strings.Split

33 uses

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

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

	crypto/x509
		verify.go#L927: 	for i, part := range strings.Split(host, ".") {
		verify.go#L990: 	patternParts := strings.Split(pattern, ".")
		verify.go#L991: 	hostParts := strings.Split(host, ".")

	net/http
		cookie.go#L64: 		parts := strings.Split(textproto.TrimString(line), ";")
		fs.go#L53: 	parts := strings.Split(name, string(filepath.Separator))
		fs.go#L879: 	for _, ra := range strings.Split(s[len(b):], ",") {
		h2_bundle.go#L5636: 		for _, key := range strings.Split(v, ",") {
		h2_bundle.go#L6489: 	for _, f := range strings.Split(v, ",") {
		server.go#L1501: 	for _, f := range strings.Split(v, ",") {

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

	runtime/debug
		mod.go#L83: 			elem := strings.Split(line[len(modLine):], "\t")
		mod.go#L90: 			elem := strings.Split(line[len(depLine):], "\t")
		mod.go#L98: 			elem := strings.Split(line[len(repLine):], "\t")

	src.elv.sh/pkg/cli/lscolors
		lscolors.go#L85: 	for _, spec := range strings.Split(s, ":") {
		lscolors.go#L86: 		words := strings.Split(spec, "=")
		lscolors.go#L92: 		for _, splitValue := range strings.Split(value, ";") {

	src.elv.sh/pkg/cli/mode
		navigation.go#L306: 	lines := strings.Split(sanitize(string(content)), "\n")

	src.elv.sh/pkg/diag
		context.go#L132: 	for i, line := range strings.Split(culprit, "\n") {

	src.elv.sh/pkg/edit
		buf_to_html.go#L27: 					for _, c := range strings.Split(c.Style, ";") {

	src.elv.sh/pkg/eval/vars
		env_list.go#L53: 	for _, path := range strings.Split(value, pathListSeparator) {

	src.elv.sh/pkg/fsutil
		search.go#L49: 	return strings.Split(os.Getenv(env.PATH), ":")

	src.elv.sh/pkg/ui
		parse_sgr.go#L147: 	for _, part := range strings.Split(s, ";") {
		styling.go#L163: 	for _, subs := range strings.Split(s, " ") {
		text_segment.go#L143: 	splitTexts := strings.Split(s.Text, string(r))

	src.elv.sh/pkg/wcwidth
		wcwidth.go#L168: 	lines := strings.Split(s, "\n")

	testing
		example.go#L53: 	lines := strings.Split(output, "\n")
		match.go#L65: 	elem := strings.Split(name, "/")
		testing.go#L551: 	lines := strings.Split(s, "\n")
		testing.go#L1713: 	for _, val := range strings.Split(*cpuListStr, ",") {

	vendor/golang.org/x/net/http/httpproxy
		proxy.go#L216: 	for _, p := range strings.Split(c.NoProxy, ",") {

	vendor/golang.org/x/net/idna
		idna10.0.0.go#L560: 		l.slice = strings.Split(l.orig, ".")