Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for matchFullLongest (0.18 sec)

  1. src/regexp/exec_test.go

    	matchFull,
    	matchPartial,
    	matchFullLongest,
    	matchPartialLongest,
    }
    
    func matchFull(re, refull *Regexp, text string) (bool, string) {
    	refull.longest = false
    	return refull.MatchString(text), "[full]"
    }
    
    func matchPartial(re, refull *Regexp, text string) (bool, string) {
    	re.longest = false
    	return re.MatchString(text), ""
    }
    
    func matchFullLongest(re, refull *Regexp, text string) (bool, string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top