Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for xabcqxq (0.13 sec)

  1. src/strings/strings_test.go

    	{"xabxc", "abc", -1},
    	{"", "abcd", -1},
    	{"xbcd", "abcd", -1},
    	{"abcd", "abcd", 0},
    	{"xabcd", "abcd", 1},
    	{"xyabcd"[:5], "abcd", -1},
    	{"xbcqq", "abcqq", -1},
    	{"abcqq", "abcqq", 0},
    	{"xabcqq", "abcqq", 1},
    	{"xyabcqq"[:6], "abcqq", -1},
    	{"xabxcqq", "abcqq", -1},
    	{"xabcqxq", "abcqq", -1},
    	{"", "01234567", -1},
    	{"32145678", "01234567", -1},
    	{"01234567", "01234567", 0},
    	{"x01234567", "01234567", 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. src/regexp/testdata/re2-search.txt

    "^(?:(a+|b)+)$"
    -;-;-;-
    0-2 1-2;0-2 1-2;0-2 1-2;0-2 1-2
    "^(?:(a+|b)+)"
    -;-;-;-
    0-2 1-2;0-2 1-2;0-2 1-2;0-2 1-2
    "(?:(a+|b)+)$"
    -;-;-;-
    0-2 1-2;0-2 1-2;0-2 1-2;0-2 1-2
    strings
    ""
    "xabcdx"
    regexps
    "ab|cd"
    -;-;-;-
    -;1-3;-;1-3
    "^(?:ab|cd)$"
    -;-;-;-
    -;-;-;-
    "^(?:ab|cd)"
    -;-;-;-
    -;-;-;-
    "(?:ab|cd)$"
    -;-;-;-
    -;-;-;-
    strings
    ""
    "hello\ngoodbye\n"
    regexps
    "h.*od?"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 42.4K bytes
    - Viewed (0)
Back to top