Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for OpNoWordBoundary (0.26 sec)

  1. src/regexp/syntax/regexp.go

    	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`
    	OpCapture                      // capturing subexpression with index Cap, optional name Name
    	OpStar                         // matches Sub[0] zero or more times
    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

    	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",
    	OpConcat:         "cat",
    	OpAlternate:      "alt",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. src/regexp/syntax/parse.go

    				case 'A':
    					p.op(OpBeginText)
    					t = t[2:]
    					break BigSwitch
    				case 'b':
    					p.op(OpWordBoundary)
    					t = t[2:]
    					break BigSwitch
    				case 'B':
    					p.op(OpNoWordBoundary)
    					t = t[2:]
    					break BigSwitch
    				case 'C':
    					// any byte; not supported
    					return nil, &Error{ErrInvalidEscape, t[:2]}
    				case 'Q':
    					// \Q ... \E: the ... is always literals
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"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},
    		{"OpStar", Const, 0},
    		{"OpWordBoundary", Const, 0},
    		{"POSIX", Const, 0},
    		{"Parse", Func, 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)
Back to top