Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for OpEndText (0.22 sec)

  1. src/regexp/syntax/op_string.go

    	_ = 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]
    	_ = x[OpConcat-18]
    	_ = x[OpAlternate-19]
    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

    	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)
  3. 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)
  4. src/regexp/syntax/compile.go

    	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)
    	case OpNoWordBoundary:
    		return c.empty(EmptyNoWordBoundary)
    	case OpCapture:
    		bra := c.cap(uint32(re.Cap << 1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse.go

    	PerlX                           // allow Perl extensions
    	UnicodeGroups                   // allow \p{Han}, \P{Han} for Unicode group and negation
    	WasDollar                       // regexp OpEndText was $, not \z
    	Simple                          // regexp contains no counted repetition
    
    	MatchNL = ClassNL | DotNL
    
    	Perl        = ClassNL | OneLine | PerlX | UnicodeGroups // as close to Perl as possible
    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},
    		{"OpStar", 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 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
    pkg regexp/syntax, const OpQuest 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 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
    pkg regexp/syntax, const OpQuest = 16
    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