Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestMinInputLen (0.22 sec)

  1. src/regexp/all_test.go

    	{`a`, 1},
    	{`aa`, 2},
    	{`(aa)a`, 3},
    	{`(?:aa)a`, 3},
    	{`a?a`, 1},
    	{`(aaa)|(aa)`, 2},
    	{`(aa)+a`, 3},
    	{`(aa)*a`, 1},
    	{`(aa){3,5}`, 6},
    	{`[a-z]`, 1},
    	{`日`, 3},
    }
    
    func TestMinInputLen(t *testing.T) {
    	for _, tt := range minInputLenTests {
    		re, _ := syntax.Parse(tt.Regexp, syntax.Perl)
    		m := minInputLen(re)
    		if m != tt.min {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top