Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for FindReaderSubmatchIndex (0.34 sec)

  1. src/regexp/regexp.go

    // an empty string means either no match or an empty match.
    //
    // There is also a subset of the methods that can be applied to text read
    // from a RuneReader:
    //
    //	MatchReader, FindReaderIndex, FindReaderSubmatchIndex
    //
    // This set may grow. Note that regular expression matches may need to
    // examine text beyond the text returned by a match, so the methods that
    // match text from a RuneReader may read arbitrarily far into the input
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. src/regexp/find_test.go

    	}
    }
    
    func TestFindReaderSubmatchIndex(t *testing.T) {
    	for _, test := range findTests {
    		testFindSubmatchIndex(&test, MustCompile(test.pat).FindReaderSubmatchIndex(strings.NewReader(test.text)), t)
    	}
    }
    
    // Now come the monster AllSubmatch cases.
    
    func TestFindAllSubmatch(t *testing.T) {
    	for _, test := range findTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 15:28:50 UTC 2021
    - 16.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Regexp).FindAllSubmatch", Method, 0},
    		{"(*Regexp).FindAllSubmatchIndex", Method, 0},
    		{"(*Regexp).FindIndex", Method, 0},
    		{"(*Regexp).FindReaderIndex", Method, 0},
    		{"(*Regexp).FindReaderSubmatchIndex", Method, 0},
    		{"(*Regexp).FindString", Method, 0},
    		{"(*Regexp).FindStringIndex", Method, 0},
    		{"(*Regexp).FindStringSubmatch", Method, 0},
    		{"(*Regexp).FindStringSubmatchIndex", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg regexp, method (*Regexp) FindAllSubmatchIndex([]uint8, int) [][]int
    pkg regexp, method (*Regexp) FindIndex([]uint8) []int
    pkg regexp, method (*Regexp) FindReaderIndex(io.RuneReader) []int
    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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top