Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for OpEndText (0.17 sec)

  1. src/regexp/syntax/regexp.go

    	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
    	OpWordBoundary                 // matches word boundary `\b`
    	OpNoWordBoundary               // matches word non-boundary `\B`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/regexp/syntax/parse_test.go

    	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",
    	OpQuest:          "que",
    	OpRepeat:         "rep",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
Back to top