func strings.SplitN

42 uses

	strings (current package)
		strings.go#L273: func SplitN(s, sep string, n int) []string { return genSplit(s, sep, 0, n) }

	cloud.google.com/go/logging
		logging.go#L304: 	parts := strings.SplitN(parent, "/", 2)

	cloud.google.com/go/storage
		storage.go#L623: 			fmt.Fprintf(buf, "%s", strings.SplitN(h, ":", 2)[1])

	github.com/go-git/go-git/v5/plumbing/protocol/packp
		report_status.go#L112: 	fields := strings.SplitN(line, " ", 2)
		report_status.go#L125: 	fields := strings.SplitN(line, " ", 3)

	github.com/google/pprof/profile
		legacy_profile.go#L716: 		attr := strings.SplitN(line, delimiter, 2)
		legacy_profile.go#L987: 				if attr := strings.SplitN(line, delimiter, 2); len(attr) == 2 {

	github.com/jackc/pgservicefile
		pgservicefile.go#L61: 			parts := strings.SplitN(line, "=", 2)

	github.com/jackc/pgtype
		interval.go#L116: 		timeParts := strings.SplitN(parts[len(parts)-1], ":", 3)
		interval.go#L137: 		secondParts := strings.SplitN(timeParts[2], ".", 2)
		line.go#L48: 	parts := strings.SplitN(string(src[1:len(src)-1]), ",", 3)
		numeric.go#L424: 	parts := strings.SplitN(str, ".", 2)
		point.go#L58: 	parts := strings.SplitN(string(src[1:len(src)-1]), ",", 2)
		point.go#L101: 	parts := strings.SplitN(string(src[1:len(src)-1]), ",", 2)
		tid.go#L72: 	parts := strings.SplitN(string(src[1:len(src)-1]), ",", 2)

	github.com/lib/pq
		conn.go#L1842: 		parts := strings.SplitN(v, "=", 2)

	github.com/mitchellh/go-homedir
		homedir.go#L124: 				passwdParts := strings.SplitN(passwd, ":", 7)

	github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg
		autoneg.go#L117: 			sp := strings.SplitN(param, "=", 2)
		autoneg.go#L143: 		asp = append(asp, strings.SplitN(ctype, "/", 2))

	github.com/prometheus/procfs
		cpuinfo.go#L75: 		field := strings.SplitN(line, ": ", 2)
		ipvs.go#L92: 	statLines = strings.SplitN(string(statContent), "\n", 4)
		mountinfo.go#L135: 		optionSplit := strings.SplitN(field, ":", 2)
		net_dev.go#L90: 	parts := strings.SplitN(rawLine, ":", 2)
		proc_ns.go#L53: 		fields := strings.SplitN(target, ":", 2)
		proc_status.go#L91: 		kv := strings.SplitN(line, ":", 2)

	go/build
		build.go#L1170: 	f := strings.SplitN(stdout.String(), "\n", 5)

	golang.org/x/oauth2/google
		sdk.go#L167: 		parts := strings.SplitN(line, "=", 2)

	golang.org/x/pkgsite/internal/config
		config.go#L282: 	parts := strings.SplitN(c.ServiceID, "-", 2)
		config.go#L298: 	parts := strings.SplitN(c.ServiceID, "-", 2)

	golang.org/x/pkgsite/internal/config/dynconfig
		dynconfig.go#L43: 		parts := strings.SplitN(location[5:], "/", 2)

	golang.org/x/pkgsite/internal/frontend
		directory.go#L61: 		prefix := strings.SplitN(d.Suffix, "/", 2)[0]
		symbol.go#L329: 		parts := strings.SplitN(b, "/", 2)
		urlinfo.go#L54: 	parts := strings.SplitN(strings.TrimPrefix(urlPath, "/"), "@", 2)
		urlinfo.go#L94: 	parts := strings.SplitN(urlPath, "@", 2)
		urlinfo.go#L139: 	parts := strings.SplitN(urlPath, "@", 2)

	golang.org/x/pkgsite/internal/godoc/dochtml/internal/render
		linkify.go#L155: 	parts := strings.SplitN(line[2:], ",", 2)

	golang.org/x/pkgsite/internal/middleware
		quota.go#L51: 	fields := strings.SplitN(s, ",", 2)

	google.golang.org/api/internal/gensupport
		json.go#L32: 		parts := strings.SplitN(nf, ".", 2)

	google.golang.org/grpc
		service_config.go#L190: 	ss := strings.SplitN((*s)[:len(*s)-1], ".", 3)

	google.golang.org/grpc/internal/grpcutil
		target.go#L32: 	spl := strings.SplitN(s, sep, 2)

	mime
		mediatype.go#L241: 	sv := strings.SplitN(v, "'", 3)

	net/http
		transport.go#L1714: 			f := strings.SplitN(resp.Status, " ", 2)