Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FindStringSubmatch (3.96 sec)

  1. src/cmd/asm/internal/asm/endtoend_test.go

    	}
    
    	errors := map[string]string{}
    	for _, line := range strings.Split(errBuf.String(), "\n") {
    		if line == "" || strings.HasPrefix(line, "\t") {
    			continue
    		}
    		m := fileLineRE.FindStringSubmatch(line)
    		if m == nil {
    			t.Errorf("unexpected error: %v", line)
    			continue
    		}
    		fileline := m[1]
    		if errors[fileline] != "" && errors[fileline] != line {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Dec 07 18:42:59 GMT 2023
    - 11.6K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg regexp, method (*Regexp) FindReaderSubmatchIndex(io.RuneReader) []int
    pkg regexp, method (*Regexp) FindString(string) string
    pkg regexp, method (*Regexp) FindStringIndex(string) []int
    pkg regexp, method (*Regexp) FindStringSubmatch(string) []string
    pkg regexp, method (*Regexp) FindStringSubmatchIndex(string) []int
    pkg regexp, method (*Regexp) FindSubmatch([]uint8) [][]uint8
    pkg regexp, method (*Regexp) FindSubmatchIndex([]uint8) []int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
Back to top