regexp.Regexp.FindStringSubmatch (method)
22 uses
regexp (current package)
regexp.go#L1041: func (re *Regexp) FindStringSubmatch(s string) []string {
go/types
version.go#L68: matches := goVersionRx.FindStringSubmatch(s)
golang.org/x/tools/internal/gocommand
vendor.go#L55: matches := modFlagRegexp.FindStringSubmatch(goflags)
version.go#L76: 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)
internal/profile
legacy_profile.go#L73: m := countStartRE.FindStringSubmatch(line)
legacy_profile.go#L98: m := countRE.FindStringSubmatch(line)
legacy_profile.go#L480: if header := heapHeaderRE.FindStringSubmatch(l); header != nil {
legacy_profile.go#L506: } else if header = growthHeaderRE.FindStringSubmatch(l); header != nil {
legacy_profile.go#L515: } else if header = fragmentationHeaderRE.FindStringSubmatch(l); header != nil {
legacy_profile.go#L595: sampleData := heapSampleRE.FindStringSubmatch(line)
legacy_profile.go#L837: sampleData := contentionSampleRE.FindStringSubmatch(line)
legacy_profile.go#L885: if m := threadzStartRE.FindStringSubmatch(line); m != nil {
legacy_profile.go#L902: } else if t := threadStartRE.FindStringSubmatch(line); len(t) != 4 {
legacy_profile.go#L919: if t := threadStartRE.FindStringSubmatch(line); len(t) != 4 {
legacy_profile.go#L1084: if me := procMapsRE.FindStringSubmatch(l); len(me) == 9 {
legacy_profile.go#L1104: if me := briefMapsRE.FindStringSubmatch(l); len(me) == 6 {
profile.go#L206: if len(libRx.FindStringSubmatch(file)) > 0 {
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)