Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for OpEndLine (0.47 sec)

  1. src/regexp/syntax/op_string.go

    	var x [1]struct{}
    	_ = x[OpNoMatch-1]
    	_ = x[OpEmptyMatch-2]
    	_ = x[OpLiteral-3]
    	_ = x[OpCharClass-4]
    	_ = x[OpAnyCharNotNL-5]
    	_ = x[OpAnyChar-6]
    	_ = x[OpBeginLine-7]
    	_ = x[OpEndLine-8]
    	_ = x[OpBeginText-9]
    	_ = x[OpEndText-10]
    	_ = x[OpWordBoundary-11]
    	_ = x[OpNoWordBoundary-12]
    	_ = x[OpCapture-13]
    	_ = x[OpStar-14]
    	_ = x[OpPlus-15]
    	_ = x[OpQuest-16]
    	_ = x[OpRepeat-17]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:24:07 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/regexp/syntax/regexp.go

    	OpAnyCharNotNL                 // matches any character except newline
    	OpAnyChar                      // matches any character
    	OpBeginLine                    // matches empty string at beginning of line
    	OpEndLine                      // matches empty string at end of line
    	OpBeginText                    // matches empty string at beginning of text
    	OpEndText                      // matches empty string at end of text
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. src/regexp/syntax/compile.go

    		return c.rune(re.Rune, re.Flags)
    	case OpAnyCharNotNL:
    		return c.rune(anyRuneNotNL, 0)
    	case OpAnyChar:
    		return c.rune(anyRune, 0)
    	case OpBeginLine:
    		return c.empty(EmptyBeginLine)
    	case OpEndLine:
    		return c.empty(EmptyEndLine)
    	case OpBeginText:
    		return c.empty(EmptyBeginText)
    	case OpEndText:
    		return c.empty(EmptyEndText)
    	case OpWordBoundary:
    		return c.empty(EmptyWordBoundary)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  4. src/regexp/syntax/parse_test.go

    var opNames = []string{
    	OpNoMatch:        "no",
    	OpEmptyMatch:     "emp",
    	OpLiteral:        "lit",
    	OpCharClass:      "cc",
    	OpAnyCharNotNL:   "dnl",
    	OpAnyChar:        "dot",
    	OpBeginLine:      "bol",
    	OpEndLine:        "eol",
    	OpBeginText:      "bot",
    	OpEndText:        "eot",
    	OpWordBoundary:   "wb",
    	OpNoWordBoundary: "nwb",
    	OpCapture:        "cap",
    	OpStar:           "star",
    	OpPlus:           "plus",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse.go

    				p.op(OpBeginText)
    			} else {
    				p.op(OpBeginLine)
    			}
    			t = t[1:]
    		case '$':
    			if p.flags&OneLine != 0 {
    				p.op(OpEndText).Flags |= WasDollar
    			} else {
    				p.op(OpEndLine)
    			}
    			t = t[1:]
    		case '.':
    			if p.flags&DotNL != 0 {
    				p.op(OpAnyChar)
    			} else {
    				p.op(OpAnyCharNotNL)
    			}
    			t = t[1:]
    		case '[':
    			if t, err = p.parseClass(t); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"OpBeginLine", Const, 0},
    		{"OpBeginText", Const, 0},
    		{"OpCapture", Const, 0},
    		{"OpCharClass", Const, 0},
    		{"OpConcat", Const, 0},
    		{"OpEmptyMatch", Const, 0},
    		{"OpEndLine", Const, 0},
    		{"OpEndText", Const, 0},
    		{"OpLiteral", Const, 0},
    		{"OpNoMatch", Const, 0},
    		{"OpNoWordBoundary", Const, 0},
    		{"OpPlus", Const, 0},
    		{"OpQuest", Const, 0},
    		{"OpRepeat", Const, 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)
  7. api/go1.txt

    pkg regexp/syntax, const OpCapture Op
    pkg regexp/syntax, const OpCharClass Op
    pkg regexp/syntax, const OpConcat Op
    pkg regexp/syntax, const OpEmptyMatch Op
    pkg regexp/syntax, const OpEndLine Op
    pkg regexp/syntax, const OpEndText Op
    pkg regexp/syntax, const OpLiteral Op
    pkg regexp/syntax, const OpNoMatch Op
    pkg regexp/syntax, const OpNoWordBoundary Op
    pkg regexp/syntax, const OpPlus Op
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  8. api/go1.1.txt

    pkg regexp/syntax, const OpCapture = 13
    pkg regexp/syntax, const OpCharClass = 4
    pkg regexp/syntax, const OpConcat = 18
    pkg regexp/syntax, const OpEmptyMatch = 2
    pkg regexp/syntax, const OpEndLine = 8
    pkg regexp/syntax, const OpEndText = 10
    pkg regexp/syntax, const OpLiteral = 3
    pkg regexp/syntax, const OpNoMatch = 1
    pkg regexp/syntax, const OpNoWordBoundary = 12
    pkg regexp/syntax, const OpPlus = 15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top