regexp.Regexp.FindStringSubmatch (method)

8 uses

	regexp (current package)
		regexp.go#L1038: func (re *Regexp) FindStringSubmatch(s string) []string {

	golang.org/x/tools/internal/gocommand
		vendor.go#L55: 	matches := modFlagRegexp.FindStringSubmatch(goflags)
		version.go#L66: 	m := re.FindStringSubmatch(data)

	google.golang.org/grpc/internal/binarylog
		env_config.go#L147: 	match := longMethodConfigRegexp.FindStringSubmatch(c)
		env_config.go#L165: 	if match := headerConfigRegexp.FindStringSubmatch(c); match != nil {
		env_config.go#L177: 	if match := messageConfigRegexp.FindStringSubmatch(c); match != nil {
		env_config.go#L189: 	if match := headerMessageConfigRegexp.FindStringSubmatch(c); match != nil {

	internal/lazyregexp
		lazyre.go#L39: 	return r.re().FindStringSubmatch(s)