github.com/riscv/riscv-go@v0.0.0-20200123204226-124ebd6fcc8e/src/regexp/testdata/re2-search.txt (about) 1 # RE2 basic search tests built by make log 2 # Thu Sep 8 13:43:43 EDT 2011 3 Regexp.SearchTests 4 strings 5 "" 6 "a" 7 regexps 8 "a" 9 -;-;-;- 10 0-1;0-1;0-1;0-1 11 "^(?:a)$" 12 -;-;-;- 13 0-1;0-1;0-1;0-1 14 "^(?:a)" 15 -;-;-;- 16 0-1;0-1;0-1;0-1 17 "(?:a)$" 18 -;-;-;- 19 0-1;0-1;0-1;0-1 20 strings 21 "" 22 "zyzzyva" 23 regexps 24 "a" 25 -;-;-;- 26 -;6-7;-;6-7 27 "^(?:a)$" 28 -;-;-;- 29 -;-;-;- 30 "^(?:a)" 31 -;-;-;- 32 -;-;-;- 33 "(?:a)$" 34 -;-;-;- 35 -;6-7;-;6-7 36 strings 37 "" 38 "aa" 39 regexps 40 "a+" 41 -;-;-;- 42 0-2;0-2;0-2;0-2 43 "^(?:a+)$" 44 -;-;-;- 45 0-2;0-2;0-2;0-2 46 "^(?:a+)" 47 -;-;-;- 48 0-2;0-2;0-2;0-2 49 "(?:a+)$" 50 -;-;-;- 51 0-2;0-2;0-2;0-2 52 strings 53 "" 54 "ab" 55 regexps 56 "(a+|b)+" 57 -;-;-;- 58 0-2 1-2;0-2 1-2;0-2 1-2;0-2 1-2 59 "^(?:(a+|b)+)$" 60 -;-;-;- 61 0-2 1-2;0-2 1-2;0-2 1-2;0-2 1-2 62 "^(?:(a+|b)+)" 63 -;-;-;- 64 0-2 1-2;0-2 1-2;0-2 1-2;0-2 1-2 65 "(?:(a+|b)+)$" 66 -;-;-;- 67 0-2 1-2;0-2 1-2;0-2 1-2;0-2 1-2 68 strings 69 "" 70 "xabcdx" 71 regexps 72 "ab|cd" 73 -;-;-;- 74 -;1-3;-;1-3 75 "^(?:ab|cd)$" 76 -;-;-;- 77 -;-;-;- 78 "^(?:ab|cd)" 79 -;-;-;- 80 -;-;-;- 81 "(?:ab|cd)$" 82 -;-;-;- 83 -;-;-;- 84 strings 85 "" 86 "hello\ngoodbye\n" 87 regexps 88 "h.*od?" 89 -;-;-;- 90 -;0-5;-;0-5 91 "^(?:h.*od?)$" 92 -;-;-;- 93 -;-;-;- 94 "^(?:h.*od?)" 95 -;-;-;- 96 -;0-5;-;0-5 97 "(?:h.*od?)$" 98 -;-;-;- 99 -;-;-;- 100 strings 101 "" 102 "hello\ngoodbye\n" 103 regexps 104 "h.*o" 105 -;-;-;- 106 -;0-5;-;0-5 107 "^(?:h.*o)$" 108 -;-;-;- 109 -;-;-;- 110 "^(?:h.*o)" 111 -;-;-;- 112 -;0-5;-;0-5 113 "(?:h.*o)$" 114 -;-;-;- 115 -;-;-;- 116 strings 117 "" 118 "goodbye\nhello\n" 119 regexps 120 "h.*o" 121 -;-;-;- 122 -;8-13;-;8-13 123 "^(?:h.*o)$" 124 -;-;-;- 125 -;-;-;- 126 "^(?:h.*o)" 127 -;-;-;- 128 -;-;-;- 129 "(?:h.*o)$" 130 -;-;-;- 131 -;-;-;- 132 strings 133 "" 134 "hello world" 135 regexps 136 "h.*o" 137 -;-;-;- 138 -;0-8;-;0-8 139 "^(?:h.*o)$" 140 -;-;-;- 141 -;-;-;- 142 "^(?:h.*o)" 143 -;-;-;- 144 -;0-8;-;0-8 145 "(?:h.*o)$" 146 -;-;-;- 147 -;-;-;- 148 strings 149 "" 150 "othello, world" 151 regexps 152 "h.*o" 153 -;-;-;- 154 -;2-11;-;2-11 155 "^(?:h.*o)$" 156 -;-;-;- 157 -;-;-;- 158 "^(?:h.*o)" 159 -;-;-;- 160 -;-;-;- 161 "(?:h.*o)$" 162 -;-;-;- 163 -;-;-;- 164 strings 165 "" 166 "aaaaaaa" 167 regexps 168 "[^\\s\\S]" 169 -;-;-;- 170 -;-;-;- 171 "^(?:[^\\s\\S])$" 172 -;-;-;- 173 -;-;-;- 174 "^(?:[^\\s\\S])" 175 -;-;-;- 176 -;-;-;- 177 "(?:[^\\s\\S])$" 178 -;-;-;- 179 -;-;-;- 180 strings 181 "" 182 "aaaaaaa" 183 regexps 184 "a" 185 -;-;-;- 186 -;0-1;-;0-1 187 "^(?:a)$" 188 -;-;-;- 189 -;-;-;- 190 "^(?:a)" 191 -;-;-;- 192 -;0-1;-;0-1 193 "(?:a)$" 194 -;-;-;- 195 -;6-7;-;6-7 196 strings 197 "" 198 "aaaaaaa" 199 regexps 200 "a*" 201 0-0;0-0;0-0;0-0 202 0-7;0-7;0-7;0-7 203 "^(?:a*)$" 204 0-0;0-0;0-0;0-0 205 0-7;0-7;0-7;0-7 206 "^(?:a*)" 207 0-0;0-0;0-0;0-0 208 0-7;0-7;0-7;0-7 209 "(?:a*)$" 210 0-0;0-0;0-0;0-0 211 0-7;0-7;0-7;0-7 212 strings 213 "" 214 "" 215 regexps 216 "a*" 217 0-0;0-0;0-0;0-0 218 0-0;0-0;0-0;0-0 219 "^(?:a*)$" 220 0-0;0-0;0-0;0-0 221 0-0;0-0;0-0;0-0 222 "^(?:a*)" 223 0-0;0-0;0-0;0-0 224 0-0;0-0;0-0;0-0 225 "(?:a*)$" 226 0-0;0-0;0-0;0-0 227 0-0;0-0;0-0;0-0 228 strings 229 "" 230 "" 231 regexps 232 "a*" 233 0-0;0-0;0-0;0-0 234 0-0;0-0;0-0;0-0 235 "^(?:a*)$" 236 0-0;0-0;0-0;0-0 237 0-0;0-0;0-0;0-0 238 "^(?:a*)" 239 0-0;0-0;0-0;0-0 240 0-0;0-0;0-0;0-0 241 "(?:a*)$" 242 0-0;0-0;0-0;0-0 243 0-0;0-0;0-0;0-0 244 strings 245 "" 246 "xabcdx" 247 regexps 248 "ab|cd" 249 -;-;-;- 250 -;1-3;-;1-3 251 "^(?:ab|cd)$" 252 -;-;-;- 253 -;-;-;- 254 "^(?:ab|cd)" 255 -;-;-;- 256 -;-;-;- 257 "(?:ab|cd)$" 258 -;-;-;- 259 -;-;-;- 260 strings 261 "" 262 "cab" 263 regexps 264 "a" 265 -;-;-;- 266 -;1-2;-;1-2 267 "^(?:a)$" 268 -;-;-;- 269 -;-;-;- 270 "^(?:a)" 271 -;-;-;- 272 -;-;-;- 273 "(?:a)$" 274 -;-;-;- 275 -;-;-;- 276 strings 277 "" 278 "cab" 279 regexps 280 "a*b" 281 -;-;-;- 282 -;1-3;-;1-3 283 "^(?:a*b)$" 284 -;-;-;- 285 -;-;-;- 286 "^(?:a*b)" 287 -;-;-;- 288 -;-;-;- 289 "(?:a*b)$" 290 -;-;-;- 291 -;1-3;-;1-3 292 strings 293 "" 294 "x" 295 regexps 296 "((((((((((((((((((((x))))))))))))))))))))" 297 -;-;-;- 298 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 299 "^(?:((((((((((((((((((((x)))))))))))))))))))))$" 300 -;-;-;- 301 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 302 "^(?:((((((((((((((((((((x)))))))))))))))))))))" 303 -;-;-;- 304 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 305 "(?:((((((((((((((((((((x)))))))))))))))))))))$" 306 -;-;-;- 307 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 308 strings 309 "" 310 "xxxabcdxxx" 311 regexps 312 "[abcd]" 313 -;-;-;- 314 -;3-4;-;3-4 315 "^(?:[abcd])$" 316 -;-;-;- 317 -;-;-;- 318 "^(?:[abcd])" 319 -;-;-;- 320 -;-;-;- 321 "(?:[abcd])$" 322 -;-;-;- 323 -;-;-;- 324 strings 325 "" 326 "xxxabcdxxx" 327 regexps 328 "[^x]" 329 -;-;-;- 330 -;3-4;-;3-4 331 "^(?:[^x])$" 332 -;-;-;- 333 -;-;-;- 334 "^(?:[^x])" 335 -;-;-;- 336 -;-;-;- 337 "(?:[^x])$" 338 -;-;-;- 339 -;-;-;- 340 strings 341 "" 342 "xxxabcdxxx" 343 regexps 344 "[abcd]+" 345 -;-;-;- 346 -;3-7;-;3-7 347 "^(?:[abcd]+)$" 348 -;-;-;- 349 -;-;-;- 350 "^(?:[abcd]+)" 351 -;-;-;- 352 -;-;-;- 353 "(?:[abcd]+)$" 354 -;-;-;- 355 -;-;-;- 356 strings 357 "" 358 "xxxabcdxxx" 359 regexps 360 "[^x]+" 361 -;-;-;- 362 -;3-7;-;3-7 363 "^(?:[^x]+)$" 364 -;-;-;- 365 -;-;-;- 366 "^(?:[^x]+)" 367 -;-;-;- 368 -;-;-;- 369 "(?:[^x]+)$" 370 -;-;-;- 371 -;-;-;- 372 strings 373 "" 374 "fo" 375 regexps 376 "(fo|foo)" 377 -;-;-;- 378 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 379 "^(?:(fo|foo))$" 380 -;-;-;- 381 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 382 "^(?:(fo|foo))" 383 -;-;-;- 384 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 385 "(?:(fo|foo))$" 386 -;-;-;- 387 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 388 strings 389 "" 390 "foo" 391 regexps 392 "(foo|fo)" 393 -;-;-;- 394 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 395 "^(?:(foo|fo))$" 396 -;-;-;- 397 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 398 "^(?:(foo|fo))" 399 -;-;-;- 400 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 401 "(?:(foo|fo))$" 402 -;-;-;- 403 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 404 strings 405 "" 406 "aA" 407 regexps 408 "aa" 409 -;-;-;- 410 -;-;-;- 411 "^(?:aa)$" 412 -;-;-;- 413 -;-;-;- 414 "^(?:aa)" 415 -;-;-;- 416 -;-;-;- 417 "(?:aa)$" 418 -;-;-;- 419 -;-;-;- 420 strings 421 "" 422 "Aa" 423 regexps 424 "a" 425 -;-;-;- 426 -;1-2;-;1-2 427 "^(?:a)$" 428 -;-;-;- 429 -;-;-;- 430 "^(?:a)" 431 -;-;-;- 432 -;-;-;- 433 "(?:a)$" 434 -;-;-;- 435 -;1-2;-;1-2 436 strings 437 "" 438 "A" 439 regexps 440 "a" 441 -;-;-;- 442 -;-;-;- 443 "^(?:a)$" 444 -;-;-;- 445 -;-;-;- 446 "^(?:a)" 447 -;-;-;- 448 -;-;-;- 449 "(?:a)$" 450 -;-;-;- 451 -;-;-;- 452 strings 453 "" 454 "abc" 455 regexps 456 "ABC" 457 -;-;-;- 458 -;-;-;- 459 "^(?:ABC)$" 460 -;-;-;- 461 -;-;-;- 462 "^(?:ABC)" 463 -;-;-;- 464 -;-;-;- 465 "(?:ABC)$" 466 -;-;-;- 467 -;-;-;- 468 strings 469 "" 470 "XABCY" 471 regexps 472 "abc" 473 -;-;-;- 474 -;-;-;- 475 "^(?:abc)$" 476 -;-;-;- 477 -;-;-;- 478 "^(?:abc)" 479 -;-;-;- 480 -;-;-;- 481 "(?:abc)$" 482 -;-;-;- 483 -;-;-;- 484 strings 485 "" 486 "xabcy" 487 regexps 488 "ABC" 489 -;-;-;- 490 -;-;-;- 491 "^(?:ABC)$" 492 -;-;-;- 493 -;-;-;- 494 "^(?:ABC)" 495 -;-;-;- 496 -;-;-;- 497 "(?:ABC)$" 498 -;-;-;- 499 -;-;-;- 500 strings 501 "" 502 "foo" 503 regexps 504 "foo|bar|[A-Z]" 505 -;-;-;- 506 0-3;0-3;0-3;0-3 507 "^(?:foo|bar|[A-Z])$" 508 -;-;-;- 509 0-3;0-3;0-3;0-3 510 "^(?:foo|bar|[A-Z])" 511 -;-;-;- 512 0-3;0-3;0-3;0-3 513 "(?:foo|bar|[A-Z])$" 514 -;-;-;- 515 0-3;0-3;0-3;0-3 516 strings 517 "" 518 "foo" 519 regexps 520 "^(foo|bar|[A-Z])" 521 -;-;-;- 522 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 523 "^(?:^(foo|bar|[A-Z]))$" 524 -;-;-;- 525 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 526 "^(?:^(foo|bar|[A-Z]))" 527 -;-;-;- 528 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 529 "(?:^(foo|bar|[A-Z]))$" 530 -;-;-;- 531 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 532 strings 533 "" 534 "foo\n" 535 regexps 536 "(foo|bar|[A-Z])$" 537 -;-;-;- 538 -;-;-;- 539 "^(?:(foo|bar|[A-Z])$)$" 540 -;-;-;- 541 -;-;-;- 542 "^(?:(foo|bar|[A-Z])$)" 543 -;-;-;- 544 -;-;-;- 545 "(?:(foo|bar|[A-Z])$)$" 546 -;-;-;- 547 -;-;-;- 548 strings 549 "" 550 "foo" 551 regexps 552 "(foo|bar|[A-Z])$" 553 -;-;-;- 554 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 555 "^(?:(foo|bar|[A-Z])$)$" 556 -;-;-;- 557 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 558 "^(?:(foo|bar|[A-Z])$)" 559 -;-;-;- 560 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 561 "(?:(foo|bar|[A-Z])$)$" 562 -;-;-;- 563 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 564 strings 565 "" 566 "foo\n" 567 regexps 568 "^(foo|bar|[A-Z])$" 569 -;-;-;- 570 -;-;-;- 571 "^(?:^(foo|bar|[A-Z])$)$" 572 -;-;-;- 573 -;-;-;- 574 "^(?:^(foo|bar|[A-Z])$)" 575 -;-;-;- 576 -;-;-;- 577 "(?:^(foo|bar|[A-Z])$)$" 578 -;-;-;- 579 -;-;-;- 580 strings 581 "" 582 "foo" 583 regexps 584 "^(foo|bar|[A-Z])$" 585 -;-;-;- 586 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 587 "^(?:^(foo|bar|[A-Z])$)$" 588 -;-;-;- 589 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 590 "^(?:^(foo|bar|[A-Z])$)" 591 -;-;-;- 592 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 593 "(?:^(foo|bar|[A-Z])$)$" 594 -;-;-;- 595 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 596 strings 597 "" 598 "bar" 599 regexps 600 "^(foo|bar|[A-Z])$" 601 -;-;-;- 602 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 603 "^(?:^(foo|bar|[A-Z])$)$" 604 -;-;-;- 605 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 606 "^(?:^(foo|bar|[A-Z])$)" 607 -;-;-;- 608 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 609 "(?:^(foo|bar|[A-Z])$)$" 610 -;-;-;- 611 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 612 strings 613 "" 614 "X" 615 regexps 616 "^(foo|bar|[A-Z])$" 617 -;-;-;- 618 0-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 619 "^(?:^(foo|bar|[A-Z])$)$" 620 -;-;-;- 621 0-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 622 "^(?:^(foo|bar|[A-Z])$)" 623 -;-;-;- 624 0-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 625 "(?:^(foo|bar|[A-Z])$)$" 626 -;-;-;- 627 0-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 628 strings 629 "" 630 "XY" 631 regexps 632 "^(foo|bar|[A-Z])$" 633 -;-;-;- 634 -;-;-;- 635 "^(?:^(foo|bar|[A-Z])$)$" 636 -;-;-;- 637 -;-;-;- 638 "^(?:^(foo|bar|[A-Z])$)" 639 -;-;-;- 640 -;-;-;- 641 "(?:^(foo|bar|[A-Z])$)$" 642 -;-;-;- 643 -;-;-;- 644 strings 645 "" 646 "fo" 647 regexps 648 "^(fo|foo)$" 649 -;-;-;- 650 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 651 "^(?:^(fo|foo)$)$" 652 -;-;-;- 653 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 654 "^(?:^(fo|foo)$)" 655 -;-;-;- 656 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 657 "(?:^(fo|foo)$)$" 658 -;-;-;- 659 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 660 strings 661 "" 662 "foo" 663 regexps 664 "^(fo|foo)$" 665 -;-;-;- 666 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 667 "^(?:^(fo|foo)$)$" 668 -;-;-;- 669 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 670 "^(?:^(fo|foo)$)" 671 -;-;-;- 672 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 673 "(?:^(fo|foo)$)$" 674 -;-;-;- 675 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 676 strings 677 "" 678 "fo" 679 regexps 680 "^^(fo|foo)$" 681 -;-;-;- 682 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 683 "^(?:^^(fo|foo)$)$" 684 -;-;-;- 685 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 686 "^(?:^^(fo|foo)$)" 687 -;-;-;- 688 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 689 "(?:^^(fo|foo)$)$" 690 -;-;-;- 691 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 692 strings 693 "" 694 "foo" 695 regexps 696 "^^(fo|foo)$" 697 -;-;-;- 698 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 699 "^(?:^^(fo|foo)$)$" 700 -;-;-;- 701 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 702 "^(?:^^(fo|foo)$)" 703 -;-;-;- 704 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 705 "(?:^^(fo|foo)$)$" 706 -;-;-;- 707 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 708 strings 709 "" 710 "" 711 regexps 712 "^$" 713 0-0;0-0;0-0;0-0 714 0-0;0-0;0-0;0-0 715 "^(?:^$)$" 716 0-0;0-0;0-0;0-0 717 0-0;0-0;0-0;0-0 718 "^(?:^$)" 719 0-0;0-0;0-0;0-0 720 0-0;0-0;0-0;0-0 721 "(?:^$)$" 722 0-0;0-0;0-0;0-0 723 0-0;0-0;0-0;0-0 724 strings 725 "" 726 "x" 727 regexps 728 "^$" 729 0-0;0-0;0-0;0-0 730 -;-;-;- 731 "^(?:^$)$" 732 0-0;0-0;0-0;0-0 733 -;-;-;- 734 "^(?:^$)" 735 0-0;0-0;0-0;0-0 736 -;-;-;- 737 "(?:^$)$" 738 0-0;0-0;0-0;0-0 739 -;-;-;- 740 strings 741 "" 742 "" 743 regexps 744 "^^$" 745 0-0;0-0;0-0;0-0 746 0-0;0-0;0-0;0-0 747 "^(?:^^$)$" 748 0-0;0-0;0-0;0-0 749 0-0;0-0;0-0;0-0 750 "^(?:^^$)" 751 0-0;0-0;0-0;0-0 752 0-0;0-0;0-0;0-0 753 "(?:^^$)$" 754 0-0;0-0;0-0;0-0 755 0-0;0-0;0-0;0-0 756 strings 757 "" 758 "" 759 regexps 760 "^$$" 761 0-0;0-0;0-0;0-0 762 0-0;0-0;0-0;0-0 763 "^(?:^$$)$" 764 0-0;0-0;0-0;0-0 765 0-0;0-0;0-0;0-0 766 "^(?:^$$)" 767 0-0;0-0;0-0;0-0 768 0-0;0-0;0-0;0-0 769 "(?:^$$)$" 770 0-0;0-0;0-0;0-0 771 0-0;0-0;0-0;0-0 772 strings 773 "" 774 "x" 775 regexps 776 "^^$" 777 0-0;0-0;0-0;0-0 778 -;-;-;- 779 "^(?:^^$)$" 780 0-0;0-0;0-0;0-0 781 -;-;-;- 782 "^(?:^^$)" 783 0-0;0-0;0-0;0-0 784 -;-;-;- 785 "(?:^^$)$" 786 0-0;0-0;0-0;0-0 787 -;-;-;- 788 strings 789 "" 790 "x" 791 regexps 792 "^$$" 793 0-0;0-0;0-0;0-0 794 -;-;-;- 795 "^(?:^$$)$" 796 0-0;0-0;0-0;0-0 797 -;-;-;- 798 "^(?:^$$)" 799 0-0;0-0;0-0;0-0 800 -;-;-;- 801 "(?:^$$)$" 802 0-0;0-0;0-0;0-0 803 -;-;-;- 804 strings 805 "" 806 "" 807 regexps 808 "^^$$" 809 0-0;0-0;0-0;0-0 810 0-0;0-0;0-0;0-0 811 "^(?:^^$$)$" 812 0-0;0-0;0-0;0-0 813 0-0;0-0;0-0;0-0 814 "^(?:^^$$)" 815 0-0;0-0;0-0;0-0 816 0-0;0-0;0-0;0-0 817 "(?:^^$$)$" 818 0-0;0-0;0-0;0-0 819 0-0;0-0;0-0;0-0 820 strings 821 "" 822 "x" 823 regexps 824 "^^$$" 825 0-0;0-0;0-0;0-0 826 -;-;-;- 827 "^(?:^^$$)$" 828 0-0;0-0;0-0;0-0 829 -;-;-;- 830 "^(?:^^$$)" 831 0-0;0-0;0-0;0-0 832 -;-;-;- 833 "(?:^^$$)$" 834 0-0;0-0;0-0;0-0 835 -;-;-;- 836 strings 837 "" 838 "" 839 regexps 840 "^^^^^^^^$$$$$$$$" 841 0-0;0-0;0-0;0-0 842 0-0;0-0;0-0;0-0 843 "^(?:^^^^^^^^$$$$$$$$)$" 844 0-0;0-0;0-0;0-0 845 0-0;0-0;0-0;0-0 846 "^(?:^^^^^^^^$$$$$$$$)" 847 0-0;0-0;0-0;0-0 848 0-0;0-0;0-0;0-0 849 "(?:^^^^^^^^$$$$$$$$)$" 850 0-0;0-0;0-0;0-0 851 0-0;0-0;0-0;0-0 852 strings 853 "" 854 "x" 855 regexps 856 "^" 857 0-0;0-0;0-0;0-0 858 -;0-0;-;0-0 859 "^(?:^)$" 860 0-0;0-0;0-0;0-0 861 -;-;-;- 862 "^(?:^)" 863 0-0;0-0;0-0;0-0 864 -;0-0;-;0-0 865 "(?:^)$" 866 0-0;0-0;0-0;0-0 867 -;-;-;- 868 strings 869 "" 870 "x" 871 regexps 872 "$" 873 0-0;0-0;0-0;0-0 874 -;1-1;-;1-1 875 "^(?:$)$" 876 0-0;0-0;0-0;0-0 877 -;-;-;- 878 "^(?:$)" 879 0-0;0-0;0-0;0-0 880 -;-;-;- 881 "(?:$)$" 882 0-0;0-0;0-0;0-0 883 -;1-1;-;1-1 884 strings 885 "" 886 "nofoo foo that" 887 regexps 888 "\\bfoo\\b" 889 -;-;-;- 890 -;6-9;-;6-9 891 "^(?:\\bfoo\\b)$" 892 -;-;-;- 893 -;-;-;- 894 "^(?:\\bfoo\\b)" 895 -;-;-;- 896 -;-;-;- 897 "(?:\\bfoo\\b)$" 898 -;-;-;- 899 -;-;-;- 900 strings 901 "" 902 "faoa x" 903 regexps 904 "a\\b" 905 -;-;-;- 906 -;3-4;-;3-4 907 "^(?:a\\b)$" 908 -;-;-;- 909 -;-;-;- 910 "^(?:a\\b)" 911 -;-;-;- 912 -;-;-;- 913 "(?:a\\b)$" 914 -;-;-;- 915 -;-;-;- 916 strings 917 "" 918 "bar x" 919 regexps 920 "\\bbar" 921 -;-;-;- 922 -;0-3;-;0-3 923 "^(?:\\bbar)$" 924 -;-;-;- 925 -;-;-;- 926 "^(?:\\bbar)" 927 -;-;-;- 928 -;0-3;-;0-3 929 "(?:\\bbar)$" 930 -;-;-;- 931 -;-;-;- 932 strings 933 "" 934 "foo\nbar x" 935 regexps 936 "\\bbar" 937 -;-;-;- 938 -;4-7;-;4-7 939 "^(?:\\bbar)$" 940 -;-;-;- 941 -;-;-;- 942 "^(?:\\bbar)" 943 -;-;-;- 944 -;-;-;- 945 "(?:\\bbar)$" 946 -;-;-;- 947 -;-;-;- 948 strings 949 "" 950 "foobar" 951 regexps 952 "bar\\b" 953 -;-;-;- 954 -;3-6;-;3-6 955 "^(?:bar\\b)$" 956 -;-;-;- 957 -;-;-;- 958 "^(?:bar\\b)" 959 -;-;-;- 960 -;-;-;- 961 "(?:bar\\b)$" 962 -;-;-;- 963 -;3-6;-;3-6 964 strings 965 "" 966 "foobar\nxxx" 967 regexps 968 "bar\\b" 969 -;-;-;- 970 -;3-6;-;3-6 971 "^(?:bar\\b)$" 972 -;-;-;- 973 -;-;-;- 974 "^(?:bar\\b)" 975 -;-;-;- 976 -;-;-;- 977 "(?:bar\\b)$" 978 -;-;-;- 979 -;-;-;- 980 strings 981 "" 982 "foo" 983 regexps 984 "(foo|bar|[A-Z])\\b" 985 -;-;-;- 986 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 987 "^(?:(foo|bar|[A-Z])\\b)$" 988 -;-;-;- 989 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 990 "^(?:(foo|bar|[A-Z])\\b)" 991 -;-;-;- 992 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 993 "(?:(foo|bar|[A-Z])\\b)$" 994 -;-;-;- 995 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 996 strings 997 "" 998 "foo\n" 999 regexps 1000 "(foo|bar|[A-Z])\\b" 1001 -;-;-;- 1002 -;0-3 0-3;-;0-3 0-3 1003 "^(?:(foo|bar|[A-Z])\\b)$" 1004 -;-;-;- 1005 -;-;-;- 1006 "^(?:(foo|bar|[A-Z])\\b)" 1007 -;-;-;- 1008 -;0-3 0-3;-;0-3 0-3 1009 "(?:(foo|bar|[A-Z])\\b)$" 1010 -;-;-;- 1011 -;-;-;- 1012 strings 1013 "" 1014 "" 1015 regexps 1016 "\\b" 1017 -;-;-;- 1018 -;-;-;- 1019 "^(?:\\b)$" 1020 -;-;-;- 1021 -;-;-;- 1022 "^(?:\\b)" 1023 -;-;-;- 1024 -;-;-;- 1025 "(?:\\b)$" 1026 -;-;-;- 1027 -;-;-;- 1028 strings 1029 "" 1030 "x" 1031 regexps 1032 "\\b" 1033 -;-;-;- 1034 -;0-0;-;0-0 1035 "^(?:\\b)$" 1036 -;-;-;- 1037 -;-;-;- 1038 "^(?:\\b)" 1039 -;-;-;- 1040 -;0-0;-;0-0 1041 "(?:\\b)$" 1042 -;-;-;- 1043 -;1-1;-;1-1 1044 strings 1045 "" 1046 "foo" 1047 regexps 1048 "\\b(foo|bar|[A-Z])" 1049 -;-;-;- 1050 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1051 "^(?:\\b(foo|bar|[A-Z]))$" 1052 -;-;-;- 1053 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1054 "^(?:\\b(foo|bar|[A-Z]))" 1055 -;-;-;- 1056 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1057 "(?:\\b(foo|bar|[A-Z]))$" 1058 -;-;-;- 1059 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1060 strings 1061 "" 1062 "X" 1063 regexps 1064 "\\b(foo|bar|[A-Z])\\b" 1065 -;-;-;- 1066 0-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 1067 "^(?:\\b(foo|bar|[A-Z])\\b)$" 1068 -;-;-;- 1069 0-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 1070 "^(?:\\b(foo|bar|[A-Z])\\b)" 1071 -;-;-;- 1072 0-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 1073 "(?:\\b(foo|bar|[A-Z])\\b)$" 1074 -;-;-;- 1075 0-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 1076 strings 1077 "" 1078 "XY" 1079 regexps 1080 "\\b(foo|bar|[A-Z])\\b" 1081 -;-;-;- 1082 -;-;-;- 1083 "^(?:\\b(foo|bar|[A-Z])\\b)$" 1084 -;-;-;- 1085 -;-;-;- 1086 "^(?:\\b(foo|bar|[A-Z])\\b)" 1087 -;-;-;- 1088 -;-;-;- 1089 "(?:\\b(foo|bar|[A-Z])\\b)$" 1090 -;-;-;- 1091 -;-;-;- 1092 strings 1093 "" 1094 "bar" 1095 regexps 1096 "\\b(foo|bar|[A-Z])\\b" 1097 -;-;-;- 1098 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1099 "^(?:\\b(foo|bar|[A-Z])\\b)$" 1100 -;-;-;- 1101 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1102 "^(?:\\b(foo|bar|[A-Z])\\b)" 1103 -;-;-;- 1104 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1105 "(?:\\b(foo|bar|[A-Z])\\b)$" 1106 -;-;-;- 1107 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1108 strings 1109 "" 1110 "foo" 1111 regexps 1112 "\\b(foo|bar|[A-Z])\\b" 1113 -;-;-;- 1114 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1115 "^(?:\\b(foo|bar|[A-Z])\\b)$" 1116 -;-;-;- 1117 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1118 "^(?:\\b(foo|bar|[A-Z])\\b)" 1119 -;-;-;- 1120 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1121 "(?:\\b(foo|bar|[A-Z])\\b)$" 1122 -;-;-;- 1123 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1124 strings 1125 "" 1126 "foo\n" 1127 regexps 1128 "\\b(foo|bar|[A-Z])\\b" 1129 -;-;-;- 1130 -;0-3 0-3;-;0-3 0-3 1131 "^(?:\\b(foo|bar|[A-Z])\\b)$" 1132 -;-;-;- 1133 -;-;-;- 1134 "^(?:\\b(foo|bar|[A-Z])\\b)" 1135 -;-;-;- 1136 -;0-3 0-3;-;0-3 0-3 1137 "(?:\\b(foo|bar|[A-Z])\\b)$" 1138 -;-;-;- 1139 -;-;-;- 1140 strings 1141 "" 1142 "ffoo bbar N x" 1143 regexps 1144 "\\b(foo|bar|[A-Z])\\b" 1145 -;-;-;- 1146 -;10-11 10-11;-;10-11 10-11 1147 "^(?:\\b(foo|bar|[A-Z])\\b)$" 1148 -;-;-;- 1149 -;-;-;- 1150 "^(?:\\b(foo|bar|[A-Z])\\b)" 1151 -;-;-;- 1152 -;-;-;- 1153 "(?:\\b(foo|bar|[A-Z])\\b)$" 1154 -;-;-;- 1155 -;-;-;- 1156 strings 1157 "" 1158 "fo" 1159 regexps 1160 "\\b(fo|foo)\\b" 1161 -;-;-;- 1162 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1163 "^(?:\\b(fo|foo)\\b)$" 1164 -;-;-;- 1165 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1166 "^(?:\\b(fo|foo)\\b)" 1167 -;-;-;- 1168 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1169 "(?:\\b(fo|foo)\\b)$" 1170 -;-;-;- 1171 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1172 strings 1173 "" 1174 "foo" 1175 regexps 1176 "\\b(fo|foo)\\b" 1177 -;-;-;- 1178 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1179 "^(?:\\b(fo|foo)\\b)$" 1180 -;-;-;- 1181 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1182 "^(?:\\b(fo|foo)\\b)" 1183 -;-;-;- 1184 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1185 "(?:\\b(fo|foo)\\b)$" 1186 -;-;-;- 1187 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1188 strings 1189 "" 1190 "" 1191 regexps 1192 "\\b\\b" 1193 -;-;-;- 1194 -;-;-;- 1195 "^(?:\\b\\b)$" 1196 -;-;-;- 1197 -;-;-;- 1198 "^(?:\\b\\b)" 1199 -;-;-;- 1200 -;-;-;- 1201 "(?:\\b\\b)$" 1202 -;-;-;- 1203 -;-;-;- 1204 strings 1205 "" 1206 "x" 1207 regexps 1208 "\\b\\b" 1209 -;-;-;- 1210 -;0-0;-;0-0 1211 "^(?:\\b\\b)$" 1212 -;-;-;- 1213 -;-;-;- 1214 "^(?:\\b\\b)" 1215 -;-;-;- 1216 -;0-0;-;0-0 1217 "(?:\\b\\b)$" 1218 -;-;-;- 1219 -;1-1;-;1-1 1220 strings 1221 "" 1222 "" 1223 regexps 1224 "\\b$" 1225 -;-;-;- 1226 -;-;-;- 1227 "^(?:\\b$)$" 1228 -;-;-;- 1229 -;-;-;- 1230 "^(?:\\b$)" 1231 -;-;-;- 1232 -;-;-;- 1233 "(?:\\b$)$" 1234 -;-;-;- 1235 -;-;-;- 1236 strings 1237 "" 1238 "x" 1239 regexps 1240 "\\b$" 1241 -;-;-;- 1242 -;1-1;-;1-1 1243 "^(?:\\b$)$" 1244 -;-;-;- 1245 -;-;-;- 1246 "^(?:\\b$)" 1247 -;-;-;- 1248 -;-;-;- 1249 "(?:\\b$)$" 1250 -;-;-;- 1251 -;1-1;-;1-1 1252 strings 1253 "" 1254 "y x" 1255 regexps 1256 "\\b$" 1257 -;-;-;- 1258 -;3-3;-;3-3 1259 "^(?:\\b$)$" 1260 -;-;-;- 1261 -;-;-;- 1262 "^(?:\\b$)" 1263 -;-;-;- 1264 -;-;-;- 1265 "(?:\\b$)$" 1266 -;-;-;- 1267 -;3-3;-;3-3 1268 strings 1269 "" 1270 "x" 1271 regexps 1272 "\\b.$" 1273 -;-;-;- 1274 0-1;0-1;0-1;0-1 1275 "^(?:\\b.$)$" 1276 -;-;-;- 1277 0-1;0-1;0-1;0-1 1278 "^(?:\\b.$)" 1279 -;-;-;- 1280 0-1;0-1;0-1;0-1 1281 "(?:\\b.$)$" 1282 -;-;-;- 1283 0-1;0-1;0-1;0-1 1284 strings 1285 "" 1286 "fo" 1287 regexps 1288 "^\\b(fo|foo)\\b" 1289 -;-;-;- 1290 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1291 "^(?:^\\b(fo|foo)\\b)$" 1292 -;-;-;- 1293 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1294 "^(?:^\\b(fo|foo)\\b)" 1295 -;-;-;- 1296 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1297 "(?:^\\b(fo|foo)\\b)$" 1298 -;-;-;- 1299 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1300 strings 1301 "" 1302 "foo" 1303 regexps 1304 "^\\b(fo|foo)\\b" 1305 -;-;-;- 1306 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1307 "^(?:^\\b(fo|foo)\\b)$" 1308 -;-;-;- 1309 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1310 "^(?:^\\b(fo|foo)\\b)" 1311 -;-;-;- 1312 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1313 "(?:^\\b(fo|foo)\\b)$" 1314 -;-;-;- 1315 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1316 strings 1317 "" 1318 "" 1319 regexps 1320 "^\\b" 1321 -;-;-;- 1322 -;-;-;- 1323 "^(?:^\\b)$" 1324 -;-;-;- 1325 -;-;-;- 1326 "^(?:^\\b)" 1327 -;-;-;- 1328 -;-;-;- 1329 "(?:^\\b)$" 1330 -;-;-;- 1331 -;-;-;- 1332 strings 1333 "" 1334 "x" 1335 regexps 1336 "^\\b" 1337 -;-;-;- 1338 -;0-0;-;0-0 1339 "^(?:^\\b)$" 1340 -;-;-;- 1341 -;-;-;- 1342 "^(?:^\\b)" 1343 -;-;-;- 1344 -;0-0;-;0-0 1345 "(?:^\\b)$" 1346 -;-;-;- 1347 -;-;-;- 1348 strings 1349 "" 1350 "" 1351 regexps 1352 "^\\b\\b" 1353 -;-;-;- 1354 -;-;-;- 1355 "^(?:^\\b\\b)$" 1356 -;-;-;- 1357 -;-;-;- 1358 "^(?:^\\b\\b)" 1359 -;-;-;- 1360 -;-;-;- 1361 "(?:^\\b\\b)$" 1362 -;-;-;- 1363 -;-;-;- 1364 strings 1365 "" 1366 "x" 1367 regexps 1368 "^\\b\\b" 1369 -;-;-;- 1370 -;0-0;-;0-0 1371 "^(?:^\\b\\b)$" 1372 -;-;-;- 1373 -;-;-;- 1374 "^(?:^\\b\\b)" 1375 -;-;-;- 1376 -;0-0;-;0-0 1377 "(?:^\\b\\b)$" 1378 -;-;-;- 1379 -;-;-;- 1380 strings 1381 "" 1382 "" 1383 regexps 1384 "^\\b$" 1385 -;-;-;- 1386 -;-;-;- 1387 "^(?:^\\b$)$" 1388 -;-;-;- 1389 -;-;-;- 1390 "^(?:^\\b$)" 1391 -;-;-;- 1392 -;-;-;- 1393 "(?:^\\b$)$" 1394 -;-;-;- 1395 -;-;-;- 1396 strings 1397 "" 1398 "x" 1399 regexps 1400 "^\\b$" 1401 -;-;-;- 1402 -;-;-;- 1403 "^(?:^\\b$)$" 1404 -;-;-;- 1405 -;-;-;- 1406 "^(?:^\\b$)" 1407 -;-;-;- 1408 -;-;-;- 1409 "(?:^\\b$)$" 1410 -;-;-;- 1411 -;-;-;- 1412 strings 1413 "" 1414 "x" 1415 regexps 1416 "^\\b.$" 1417 -;-;-;- 1418 0-1;0-1;0-1;0-1 1419 "^(?:^\\b.$)$" 1420 -;-;-;- 1421 0-1;0-1;0-1;0-1 1422 "^(?:^\\b.$)" 1423 -;-;-;- 1424 0-1;0-1;0-1;0-1 1425 "(?:^\\b.$)$" 1426 -;-;-;- 1427 0-1;0-1;0-1;0-1 1428 strings 1429 "" 1430 "x" 1431 regexps 1432 "^\\b.\\b$" 1433 -;-;-;- 1434 0-1;0-1;0-1;0-1 1435 "^(?:^\\b.\\b$)$" 1436 -;-;-;- 1437 0-1;0-1;0-1;0-1 1438 "^(?:^\\b.\\b$)" 1439 -;-;-;- 1440 0-1;0-1;0-1;0-1 1441 "(?:^\\b.\\b$)$" 1442 -;-;-;- 1443 0-1;0-1;0-1;0-1 1444 strings 1445 "" 1446 "" 1447 regexps 1448 "^^^^^^^^\\b$$$$$$$" 1449 -;-;-;- 1450 -;-;-;- 1451 "^(?:^^^^^^^^\\b$$$$$$$)$" 1452 -;-;-;- 1453 -;-;-;- 1454 "^(?:^^^^^^^^\\b$$$$$$$)" 1455 -;-;-;- 1456 -;-;-;- 1457 "(?:^^^^^^^^\\b$$$$$$$)$" 1458 -;-;-;- 1459 -;-;-;- 1460 strings 1461 "" 1462 "x" 1463 regexps 1464 "^^^^^^^^\\b.$$$$$$" 1465 -;-;-;- 1466 0-1;0-1;0-1;0-1 1467 "^(?:^^^^^^^^\\b.$$$$$$)$" 1468 -;-;-;- 1469 0-1;0-1;0-1;0-1 1470 "^(?:^^^^^^^^\\b.$$$$$$)" 1471 -;-;-;- 1472 0-1;0-1;0-1;0-1 1473 "(?:^^^^^^^^\\b.$$$$$$)$" 1474 -;-;-;- 1475 0-1;0-1;0-1;0-1 1476 strings 1477 "" 1478 "x" 1479 regexps 1480 "^^^^^^^^\\b$$$$$$$" 1481 -;-;-;- 1482 -;-;-;- 1483 "^(?:^^^^^^^^\\b$$$$$$$)$" 1484 -;-;-;- 1485 -;-;-;- 1486 "^(?:^^^^^^^^\\b$$$$$$$)" 1487 -;-;-;- 1488 -;-;-;- 1489 "(?:^^^^^^^^\\b$$$$$$$)$" 1490 -;-;-;- 1491 -;-;-;- 1492 strings 1493 "" 1494 "n foo xfoox that" 1495 regexps 1496 "\\Bfoo\\B" 1497 -;-;-;- 1498 -;7-10;-;7-10 1499 "^(?:\\Bfoo\\B)$" 1500 -;-;-;- 1501 -;-;-;- 1502 "^(?:\\Bfoo\\B)" 1503 -;-;-;- 1504 -;-;-;- 1505 "(?:\\Bfoo\\B)$" 1506 -;-;-;- 1507 -;-;-;- 1508 strings 1509 "" 1510 "faoa x" 1511 regexps 1512 "a\\B" 1513 -;-;-;- 1514 -;1-2;-;1-2 1515 "^(?:a\\B)$" 1516 -;-;-;- 1517 -;-;-;- 1518 "^(?:a\\B)" 1519 -;-;-;- 1520 -;-;-;- 1521 "(?:a\\B)$" 1522 -;-;-;- 1523 -;-;-;- 1524 strings 1525 "" 1526 "bar x" 1527 regexps 1528 "\\Bbar" 1529 -;-;-;- 1530 -;-;-;- 1531 "^(?:\\Bbar)$" 1532 -;-;-;- 1533 -;-;-;- 1534 "^(?:\\Bbar)" 1535 -;-;-;- 1536 -;-;-;- 1537 "(?:\\Bbar)$" 1538 -;-;-;- 1539 -;-;-;- 1540 strings 1541 "" 1542 "foo\nbar x" 1543 regexps 1544 "\\Bbar" 1545 -;-;-;- 1546 -;-;-;- 1547 "^(?:\\Bbar)$" 1548 -;-;-;- 1549 -;-;-;- 1550 "^(?:\\Bbar)" 1551 -;-;-;- 1552 -;-;-;- 1553 "(?:\\Bbar)$" 1554 -;-;-;- 1555 -;-;-;- 1556 strings 1557 "" 1558 "foobar" 1559 regexps 1560 "bar\\B" 1561 -;-;-;- 1562 -;-;-;- 1563 "^(?:bar\\B)$" 1564 -;-;-;- 1565 -;-;-;- 1566 "^(?:bar\\B)" 1567 -;-;-;- 1568 -;-;-;- 1569 "(?:bar\\B)$" 1570 -;-;-;- 1571 -;-;-;- 1572 strings 1573 "" 1574 "foobar\nxxx" 1575 regexps 1576 "bar\\B" 1577 -;-;-;- 1578 -;-;-;- 1579 "^(?:bar\\B)$" 1580 -;-;-;- 1581 -;-;-;- 1582 "^(?:bar\\B)" 1583 -;-;-;- 1584 -;-;-;- 1585 "(?:bar\\B)$" 1586 -;-;-;- 1587 -;-;-;- 1588 strings 1589 "" 1590 "foox" 1591 regexps 1592 "(foo|bar|[A-Z])\\B" 1593 -;-;-;- 1594 -;0-3 0-3;-;0-3 0-3 1595 "^(?:(foo|bar|[A-Z])\\B)$" 1596 -;-;-;- 1597 -;-;-;- 1598 "^(?:(foo|bar|[A-Z])\\B)" 1599 -;-;-;- 1600 -;0-3 0-3;-;0-3 0-3 1601 "(?:(foo|bar|[A-Z])\\B)$" 1602 -;-;-;- 1603 -;-;-;- 1604 strings 1605 "" 1606 "foo\n" 1607 regexps 1608 "(foo|bar|[A-Z])\\B" 1609 -;-;-;- 1610 -;-;-;- 1611 "^(?:(foo|bar|[A-Z])\\B)$" 1612 -;-;-;- 1613 -;-;-;- 1614 "^(?:(foo|bar|[A-Z])\\B)" 1615 -;-;-;- 1616 -;-;-;- 1617 "(?:(foo|bar|[A-Z])\\B)$" 1618 -;-;-;- 1619 -;-;-;- 1620 strings 1621 "" 1622 "" 1623 regexps 1624 "\\B" 1625 0-0;0-0;0-0;0-0 1626 0-0;0-0;0-0;0-0 1627 "^(?:\\B)$" 1628 0-0;0-0;0-0;0-0 1629 0-0;0-0;0-0;0-0 1630 "^(?:\\B)" 1631 0-0;0-0;0-0;0-0 1632 0-0;0-0;0-0;0-0 1633 "(?:\\B)$" 1634 0-0;0-0;0-0;0-0 1635 0-0;0-0;0-0;0-0 1636 strings 1637 "" 1638 "x" 1639 regexps 1640 "\\B" 1641 0-0;0-0;0-0;0-0 1642 -;-;-;- 1643 "^(?:\\B)$" 1644 0-0;0-0;0-0;0-0 1645 -;-;-;- 1646 "^(?:\\B)" 1647 0-0;0-0;0-0;0-0 1648 -;-;-;- 1649 "(?:\\B)$" 1650 0-0;0-0;0-0;0-0 1651 -;-;-;- 1652 strings 1653 "" 1654 "foo" 1655 regexps 1656 "\\B(foo|bar|[A-Z])" 1657 -;-;-;- 1658 -;-;-;- 1659 "^(?:\\B(foo|bar|[A-Z]))$" 1660 -;-;-;- 1661 -;-;-;- 1662 "^(?:\\B(foo|bar|[A-Z]))" 1663 -;-;-;- 1664 -;-;-;- 1665 "(?:\\B(foo|bar|[A-Z]))$" 1666 -;-;-;- 1667 -;-;-;- 1668 strings 1669 "" 1670 "xXy" 1671 regexps 1672 "\\B(foo|bar|[A-Z])\\B" 1673 -;-;-;- 1674 -;1-2 1-2;-;1-2 1-2 1675 "^(?:\\B(foo|bar|[A-Z])\\B)$" 1676 -;-;-;- 1677 -;-;-;- 1678 "^(?:\\B(foo|bar|[A-Z])\\B)" 1679 -;-;-;- 1680 -;-;-;- 1681 "(?:\\B(foo|bar|[A-Z])\\B)$" 1682 -;-;-;- 1683 -;-;-;- 1684 strings 1685 "" 1686 "XY" 1687 regexps 1688 "\\B(foo|bar|[A-Z])\\B" 1689 -;-;-;- 1690 -;-;-;- 1691 "^(?:\\B(foo|bar|[A-Z])\\B)$" 1692 -;-;-;- 1693 -;-;-;- 1694 "^(?:\\B(foo|bar|[A-Z])\\B)" 1695 -;-;-;- 1696 -;-;-;- 1697 "(?:\\B(foo|bar|[A-Z])\\B)$" 1698 -;-;-;- 1699 -;-;-;- 1700 strings 1701 "" 1702 "XYZ" 1703 regexps 1704 "\\B(foo|bar|[A-Z])\\B" 1705 -;-;-;- 1706 -;1-2 1-2;-;1-2 1-2 1707 "^(?:\\B(foo|bar|[A-Z])\\B)$" 1708 -;-;-;- 1709 -;-;-;- 1710 "^(?:\\B(foo|bar|[A-Z])\\B)" 1711 -;-;-;- 1712 -;-;-;- 1713 "(?:\\B(foo|bar|[A-Z])\\B)$" 1714 -;-;-;- 1715 -;-;-;- 1716 strings 1717 "" 1718 "abara" 1719 regexps 1720 "\\B(foo|bar|[A-Z])\\B" 1721 -;-;-;- 1722 -;1-4 1-4;-;1-4 1-4 1723 "^(?:\\B(foo|bar|[A-Z])\\B)$" 1724 -;-;-;- 1725 -;-;-;- 1726 "^(?:\\B(foo|bar|[A-Z])\\B)" 1727 -;-;-;- 1728 -;-;-;- 1729 "(?:\\B(foo|bar|[A-Z])\\B)$" 1730 -;-;-;- 1731 -;-;-;- 1732 strings 1733 "" 1734 "xfoo_" 1735 regexps 1736 "\\B(foo|bar|[A-Z])\\B" 1737 -;-;-;- 1738 -;1-4 1-4;-;1-4 1-4 1739 "^(?:\\B(foo|bar|[A-Z])\\B)$" 1740 -;-;-;- 1741 -;-;-;- 1742 "^(?:\\B(foo|bar|[A-Z])\\B)" 1743 -;-;-;- 1744 -;-;-;- 1745 "(?:\\B(foo|bar|[A-Z])\\B)$" 1746 -;-;-;- 1747 -;-;-;- 1748 strings 1749 "" 1750 "xfoo\n" 1751 regexps 1752 "\\B(foo|bar|[A-Z])\\B" 1753 -;-;-;- 1754 -;-;-;- 1755 "^(?:\\B(foo|bar|[A-Z])\\B)$" 1756 -;-;-;- 1757 -;-;-;- 1758 "^(?:\\B(foo|bar|[A-Z])\\B)" 1759 -;-;-;- 1760 -;-;-;- 1761 "(?:\\B(foo|bar|[A-Z])\\B)$" 1762 -;-;-;- 1763 -;-;-;- 1764 strings 1765 "" 1766 "foo bar vNx" 1767 regexps 1768 "\\B(foo|bar|[A-Z])\\B" 1769 -;-;-;- 1770 -;9-10 9-10;-;9-10 9-10 1771 "^(?:\\B(foo|bar|[A-Z])\\B)$" 1772 -;-;-;- 1773 -;-;-;- 1774 "^(?:\\B(foo|bar|[A-Z])\\B)" 1775 -;-;-;- 1776 -;-;-;- 1777 "(?:\\B(foo|bar|[A-Z])\\B)$" 1778 -;-;-;- 1779 -;-;-;- 1780 strings 1781 "" 1782 "xfoo" 1783 regexps 1784 "\\B(fo|foo)\\B" 1785 -;-;-;- 1786 -;1-3 1-3;-;1-3 1-3 1787 "^(?:\\B(fo|foo)\\B)$" 1788 -;-;-;- 1789 -;-;-;- 1790 "^(?:\\B(fo|foo)\\B)" 1791 -;-;-;- 1792 -;-;-;- 1793 "(?:\\B(fo|foo)\\B)$" 1794 -;-;-;- 1795 -;-;-;- 1796 strings 1797 "" 1798 "xfooo" 1799 regexps 1800 "\\B(foo|fo)\\B" 1801 -;-;-;- 1802 -;1-4 1-4;-;1-4 1-4 1803 "^(?:\\B(foo|fo)\\B)$" 1804 -;-;-;- 1805 -;-;-;- 1806 "^(?:\\B(foo|fo)\\B)" 1807 -;-;-;- 1808 -;-;-;- 1809 "(?:\\B(foo|fo)\\B)$" 1810 -;-;-;- 1811 -;-;-;- 1812 strings 1813 "" 1814 "" 1815 regexps 1816 "\\B\\B" 1817 0-0;0-0;0-0;0-0 1818 0-0;0-0;0-0;0-0 1819 "^(?:\\B\\B)$" 1820 0-0;0-0;0-0;0-0 1821 0-0;0-0;0-0;0-0 1822 "^(?:\\B\\B)" 1823 0-0;0-0;0-0;0-0 1824 0-0;0-0;0-0;0-0 1825 "(?:\\B\\B)$" 1826 0-0;0-0;0-0;0-0 1827 0-0;0-0;0-0;0-0 1828 strings 1829 "" 1830 "x" 1831 regexps 1832 "\\B\\B" 1833 0-0;0-0;0-0;0-0 1834 -;-;-;- 1835 "^(?:\\B\\B)$" 1836 0-0;0-0;0-0;0-0 1837 -;-;-;- 1838 "^(?:\\B\\B)" 1839 0-0;0-0;0-0;0-0 1840 -;-;-;- 1841 "(?:\\B\\B)$" 1842 0-0;0-0;0-0;0-0 1843 -;-;-;- 1844 strings 1845 "" 1846 "" 1847 regexps 1848 "\\B$" 1849 0-0;0-0;0-0;0-0 1850 0-0;0-0;0-0;0-0 1851 "^(?:\\B$)$" 1852 0-0;0-0;0-0;0-0 1853 0-0;0-0;0-0;0-0 1854 "^(?:\\B$)" 1855 0-0;0-0;0-0;0-0 1856 0-0;0-0;0-0;0-0 1857 "(?:\\B$)$" 1858 0-0;0-0;0-0;0-0 1859 0-0;0-0;0-0;0-0 1860 strings 1861 "" 1862 "x" 1863 regexps 1864 "\\B$" 1865 0-0;0-0;0-0;0-0 1866 -;-;-;- 1867 "^(?:\\B$)$" 1868 0-0;0-0;0-0;0-0 1869 -;-;-;- 1870 "^(?:\\B$)" 1871 0-0;0-0;0-0;0-0 1872 -;-;-;- 1873 "(?:\\B$)$" 1874 0-0;0-0;0-0;0-0 1875 -;-;-;- 1876 strings 1877 "" 1878 "y x" 1879 regexps 1880 "\\B$" 1881 0-0;0-0;0-0;0-0 1882 -;-;-;- 1883 "^(?:\\B$)$" 1884 0-0;0-0;0-0;0-0 1885 -;-;-;- 1886 "^(?:\\B$)" 1887 0-0;0-0;0-0;0-0 1888 -;-;-;- 1889 "(?:\\B$)$" 1890 0-0;0-0;0-0;0-0 1891 -;-;-;- 1892 strings 1893 "" 1894 "x" 1895 regexps 1896 "\\B.$" 1897 -;-;-;- 1898 -;-;-;- 1899 "^(?:\\B.$)$" 1900 -;-;-;- 1901 -;-;-;- 1902 "^(?:\\B.$)" 1903 -;-;-;- 1904 -;-;-;- 1905 "(?:\\B.$)$" 1906 -;-;-;- 1907 -;-;-;- 1908 strings 1909 "" 1910 "fo" 1911 regexps 1912 "^\\B(fo|foo)\\B" 1913 -;-;-;- 1914 -;-;-;- 1915 "^(?:^\\B(fo|foo)\\B)$" 1916 -;-;-;- 1917 -;-;-;- 1918 "^(?:^\\B(fo|foo)\\B)" 1919 -;-;-;- 1920 -;-;-;- 1921 "(?:^\\B(fo|foo)\\B)$" 1922 -;-;-;- 1923 -;-;-;- 1924 strings 1925 "" 1926 "foo" 1927 regexps 1928 "^\\B(fo|foo)\\B" 1929 -;-;-;- 1930 -;-;-;- 1931 "^(?:^\\B(fo|foo)\\B)$" 1932 -;-;-;- 1933 -;-;-;- 1934 "^(?:^\\B(fo|foo)\\B)" 1935 -;-;-;- 1936 -;-;-;- 1937 "(?:^\\B(fo|foo)\\B)$" 1938 -;-;-;- 1939 -;-;-;- 1940 strings 1941 "" 1942 "" 1943 regexps 1944 "^\\B" 1945 0-0;0-0;0-0;0-0 1946 0-0;0-0;0-0;0-0 1947 "^(?:^\\B)$" 1948 0-0;0-0;0-0;0-0 1949 0-0;0-0;0-0;0-0 1950 "^(?:^\\B)" 1951 0-0;0-0;0-0;0-0 1952 0-0;0-0;0-0;0-0 1953 "(?:^\\B)$" 1954 0-0;0-0;0-0;0-0 1955 0-0;0-0;0-0;0-0 1956 strings 1957 "" 1958 "x" 1959 regexps 1960 "^\\B" 1961 0-0;0-0;0-0;0-0 1962 -;-;-;- 1963 "^(?:^\\B)$" 1964 0-0;0-0;0-0;0-0 1965 -;-;-;- 1966 "^(?:^\\B)" 1967 0-0;0-0;0-0;0-0 1968 -;-;-;- 1969 "(?:^\\B)$" 1970 0-0;0-0;0-0;0-0 1971 -;-;-;- 1972 strings 1973 "" 1974 "" 1975 regexps 1976 "^\\B\\B" 1977 0-0;0-0;0-0;0-0 1978 0-0;0-0;0-0;0-0 1979 "^(?:^\\B\\B)$" 1980 0-0;0-0;0-0;0-0 1981 0-0;0-0;0-0;0-0 1982 "^(?:^\\B\\B)" 1983 0-0;0-0;0-0;0-0 1984 0-0;0-0;0-0;0-0 1985 "(?:^\\B\\B)$" 1986 0-0;0-0;0-0;0-0 1987 0-0;0-0;0-0;0-0 1988 strings 1989 "" 1990 "x" 1991 regexps 1992 "^\\B\\B" 1993 0-0;0-0;0-0;0-0 1994 -;-;-;- 1995 "^(?:^\\B\\B)$" 1996 0-0;0-0;0-0;0-0 1997 -;-;-;- 1998 "^(?:^\\B\\B)" 1999 0-0;0-0;0-0;0-0 2000 -;-;-;- 2001 "(?:^\\B\\B)$" 2002 0-0;0-0;0-0;0-0 2003 -;-;-;- 2004 strings 2005 "" 2006 "" 2007 regexps 2008 "^\\B$" 2009 0-0;0-0;0-0;0-0 2010 0-0;0-0;0-0;0-0 2011 "^(?:^\\B$)$" 2012 0-0;0-0;0-0;0-0 2013 0-0;0-0;0-0;0-0 2014 "^(?:^\\B$)" 2015 0-0;0-0;0-0;0-0 2016 0-0;0-0;0-0;0-0 2017 "(?:^\\B$)$" 2018 0-0;0-0;0-0;0-0 2019 0-0;0-0;0-0;0-0 2020 strings 2021 "" 2022 "x" 2023 regexps 2024 "^\\B$" 2025 0-0;0-0;0-0;0-0 2026 -;-;-;- 2027 "^(?:^\\B$)$" 2028 0-0;0-0;0-0;0-0 2029 -;-;-;- 2030 "^(?:^\\B$)" 2031 0-0;0-0;0-0;0-0 2032 -;-;-;- 2033 "(?:^\\B$)$" 2034 0-0;0-0;0-0;0-0 2035 -;-;-;- 2036 strings 2037 "" 2038 "x" 2039 regexps 2040 "^\\B.$" 2041 -;-;-;- 2042 -;-;-;- 2043 "^(?:^\\B.$)$" 2044 -;-;-;- 2045 -;-;-;- 2046 "^(?:^\\B.$)" 2047 -;-;-;- 2048 -;-;-;- 2049 "(?:^\\B.$)$" 2050 -;-;-;- 2051 -;-;-;- 2052 strings 2053 "" 2054 "x" 2055 regexps 2056 "^\\B.\\B$" 2057 -;-;-;- 2058 -;-;-;- 2059 "^(?:^\\B.\\B$)$" 2060 -;-;-;- 2061 -;-;-;- 2062 "^(?:^\\B.\\B$)" 2063 -;-;-;- 2064 -;-;-;- 2065 "(?:^\\B.\\B$)$" 2066 -;-;-;- 2067 -;-;-;- 2068 strings 2069 "" 2070 "" 2071 regexps 2072 "^^^^^^^^\\B$$$$$$$" 2073 0-0;0-0;0-0;0-0 2074 0-0;0-0;0-0;0-0 2075 "^(?:^^^^^^^^\\B$$$$$$$)$" 2076 0-0;0-0;0-0;0-0 2077 0-0;0-0;0-0;0-0 2078 "^(?:^^^^^^^^\\B$$$$$$$)" 2079 0-0;0-0;0-0;0-0 2080 0-0;0-0;0-0;0-0 2081 "(?:^^^^^^^^\\B$$$$$$$)$" 2082 0-0;0-0;0-0;0-0 2083 0-0;0-0;0-0;0-0 2084 strings 2085 "" 2086 "x" 2087 regexps 2088 "^^^^^^^^\\B.$$$$$$" 2089 -;-;-;- 2090 -;-;-;- 2091 "^(?:^^^^^^^^\\B.$$$$$$)$" 2092 -;-;-;- 2093 -;-;-;- 2094 "^(?:^^^^^^^^\\B.$$$$$$)" 2095 -;-;-;- 2096 -;-;-;- 2097 "(?:^^^^^^^^\\B.$$$$$$)$" 2098 -;-;-;- 2099 -;-;-;- 2100 strings 2101 "" 2102 "x" 2103 regexps 2104 "^^^^^^^^\\B$$$$$$$" 2105 0-0;0-0;0-0;0-0 2106 -;-;-;- 2107 "^(?:^^^^^^^^\\B$$$$$$$)$" 2108 0-0;0-0;0-0;0-0 2109 -;-;-;- 2110 "^(?:^^^^^^^^\\B$$$$$$$)" 2111 0-0;0-0;0-0;0-0 2112 -;-;-;- 2113 "(?:^^^^^^^^\\B$$$$$$$)$" 2114 0-0;0-0;0-0;0-0 2115 -;-;-;- 2116 strings 2117 "" 2118 "x" 2119 regexps 2120 "\\bx\\b" 2121 -;-;-;- 2122 0-1;0-1;0-1;0-1 2123 "^(?:\\bx\\b)$" 2124 -;-;-;- 2125 0-1;0-1;0-1;0-1 2126 "^(?:\\bx\\b)" 2127 -;-;-;- 2128 0-1;0-1;0-1;0-1 2129 "(?:\\bx\\b)$" 2130 -;-;-;- 2131 0-1;0-1;0-1;0-1 2132 strings 2133 "" 2134 "x>" 2135 regexps 2136 "\\bx\\b" 2137 -;-;-;- 2138 -;0-1;-;0-1 2139 "^(?:\\bx\\b)$" 2140 -;-;-;- 2141 -;-;-;- 2142 "^(?:\\bx\\b)" 2143 -;-;-;- 2144 -;0-1;-;0-1 2145 "(?:\\bx\\b)$" 2146 -;-;-;- 2147 -;-;-;- 2148 strings 2149 "" 2150 "<x" 2151 regexps 2152 "\\bx\\b" 2153 -;-;-;- 2154 -;1-2;-;1-2 2155 "^(?:\\bx\\b)$" 2156 -;-;-;- 2157 -;-;-;- 2158 "^(?:\\bx\\b)" 2159 -;-;-;- 2160 -;-;-;- 2161 "(?:\\bx\\b)$" 2162 -;-;-;- 2163 -;1-2;-;1-2 2164 strings 2165 "" 2166 "<x>" 2167 regexps 2168 "\\bx\\b" 2169 -;-;-;- 2170 -;1-2;-;1-2 2171 "^(?:\\bx\\b)$" 2172 -;-;-;- 2173 -;-;-;- 2174 "^(?:\\bx\\b)" 2175 -;-;-;- 2176 -;-;-;- 2177 "(?:\\bx\\b)$" 2178 -;-;-;- 2179 -;-;-;- 2180 strings 2181 "" 2182 "ax" 2183 regexps 2184 "\\bx\\b" 2185 -;-;-;- 2186 -;-;-;- 2187 "^(?:\\bx\\b)$" 2188 -;-;-;- 2189 -;-;-;- 2190 "^(?:\\bx\\b)" 2191 -;-;-;- 2192 -;-;-;- 2193 "(?:\\bx\\b)$" 2194 -;-;-;- 2195 -;-;-;- 2196 strings 2197 "" 2198 "xb" 2199 regexps 2200 "\\bx\\b" 2201 -;-;-;- 2202 -;-;-;- 2203 "^(?:\\bx\\b)$" 2204 -;-;-;- 2205 -;-;-;- 2206 "^(?:\\bx\\b)" 2207 -;-;-;- 2208 -;-;-;- 2209 "(?:\\bx\\b)$" 2210 -;-;-;- 2211 -;-;-;- 2212 strings 2213 "" 2214 "axb" 2215 regexps 2216 "\\bx\\b" 2217 -;-;-;- 2218 -;-;-;- 2219 "^(?:\\bx\\b)$" 2220 -;-;-;- 2221 -;-;-;- 2222 "^(?:\\bx\\b)" 2223 -;-;-;- 2224 -;-;-;- 2225 "(?:\\bx\\b)$" 2226 -;-;-;- 2227 -;-;-;- 2228 strings 2229 "" 2230 "«x" 2231 regexps 2232 "\\bx\\b" 2233 -;-;-;- 2234 -;2-3;-;2-3 2235 "^(?:\\bx\\b)$" 2236 -;-;-;- 2237 -;-;-;- 2238 "^(?:\\bx\\b)" 2239 -;-;-;- 2240 -;-;-;- 2241 "(?:\\bx\\b)$" 2242 -;-;-;- 2243 -;2-3;-;2-3 2244 strings 2245 "" 2246 "x»" 2247 regexps 2248 "\\bx\\b" 2249 -;-;-;- 2250 -;0-1;-;0-1 2251 "^(?:\\bx\\b)$" 2252 -;-;-;- 2253 -;-;-;- 2254 "^(?:\\bx\\b)" 2255 -;-;-;- 2256 -;0-1;-;0-1 2257 "(?:\\bx\\b)$" 2258 -;-;-;- 2259 -;-;-;- 2260 strings 2261 "" 2262 "«x»" 2263 regexps 2264 "\\bx\\b" 2265 -;-;-;- 2266 -;2-3;-;2-3 2267 "^(?:\\bx\\b)$" 2268 -;-;-;- 2269 -;-;-;- 2270 "^(?:\\bx\\b)" 2271 -;-;-;- 2272 -;-;-;- 2273 "(?:\\bx\\b)$" 2274 -;-;-;- 2275 -;-;-;- 2276 strings 2277 "" 2278 "axb" 2279 regexps 2280 "\\bx\\b" 2281 -;-;-;- 2282 -;-;-;- 2283 "^(?:\\bx\\b)$" 2284 -;-;-;- 2285 -;-;-;- 2286 "^(?:\\bx\\b)" 2287 -;-;-;- 2288 -;-;-;- 2289 "(?:\\bx\\b)$" 2290 -;-;-;- 2291 -;-;-;- 2292 strings 2293 "" 2294 "áxβ" 2295 regexps 2296 "\\bx\\b" 2297 -;-;-;- 2298 -;2-3;-;2-3 2299 "^(?:\\bx\\b)$" 2300 -;-;-;- 2301 -;-;-;- 2302 "^(?:\\bx\\b)" 2303 -;-;-;- 2304 -;-;-;- 2305 "(?:\\bx\\b)$" 2306 -;-;-;- 2307 -;-;-;- 2308 strings 2309 "" 2310 "axb" 2311 regexps 2312 "\\Bx\\B" 2313 -;-;-;- 2314 -;1-2;-;1-2 2315 "^(?:\\Bx\\B)$" 2316 -;-;-;- 2317 -;-;-;- 2318 "^(?:\\Bx\\B)" 2319 -;-;-;- 2320 -;-;-;- 2321 "(?:\\Bx\\B)$" 2322 -;-;-;- 2323 -;-;-;- 2324 strings 2325 "" 2326 "áxβ" 2327 regexps 2328 "\\Bx\\B" 2329 -;-;-;- 2330 -;-;-;- 2331 "^(?:\\Bx\\B)$" 2332 -;-;-;- 2333 -;-;-;- 2334 "^(?:\\Bx\\B)" 2335 -;-;-;- 2336 -;-;-;- 2337 "(?:\\Bx\\B)$" 2338 -;-;-;- 2339 -;-;-;- 2340 strings 2341 "" 2342 "" 2343 regexps 2344 "^$^$" 2345 0-0;0-0;0-0;0-0 2346 0-0;0-0;0-0;0-0 2347 "^(?:^$^$)$" 2348 0-0;0-0;0-0;0-0 2349 0-0;0-0;0-0;0-0 2350 "^(?:^$^$)" 2351 0-0;0-0;0-0;0-0 2352 0-0;0-0;0-0;0-0 2353 "(?:^$^$)$" 2354 0-0;0-0;0-0;0-0 2355 0-0;0-0;0-0;0-0 2356 strings 2357 "" 2358 "" 2359 regexps 2360 "^$^" 2361 0-0;0-0;0-0;0-0 2362 0-0;0-0;0-0;0-0 2363 "^(?:^$^)$" 2364 0-0;0-0;0-0;0-0 2365 0-0;0-0;0-0;0-0 2366 "^(?:^$^)" 2367 0-0;0-0;0-0;0-0 2368 0-0;0-0;0-0;0-0 2369 "(?:^$^)$" 2370 0-0;0-0;0-0;0-0 2371 0-0;0-0;0-0;0-0 2372 strings 2373 "" 2374 "" 2375 regexps 2376 "$^$" 2377 0-0;0-0;0-0;0-0 2378 0-0;0-0;0-0;0-0 2379 "^(?:$^$)$" 2380 0-0;0-0;0-0;0-0 2381 0-0;0-0;0-0;0-0 2382 "^(?:$^$)" 2383 0-0;0-0;0-0;0-0 2384 0-0;0-0;0-0;0-0 2385 "(?:$^$)$" 2386 0-0;0-0;0-0;0-0 2387 0-0;0-0;0-0;0-0 2388 strings 2389 "" 2390 "x" 2391 regexps 2392 "^$^$" 2393 0-0;0-0;0-0;0-0 2394 -;-;-;- 2395 "^(?:^$^$)$" 2396 0-0;0-0;0-0;0-0 2397 -;-;-;- 2398 "^(?:^$^$)" 2399 0-0;0-0;0-0;0-0 2400 -;-;-;- 2401 "(?:^$^$)$" 2402 0-0;0-0;0-0;0-0 2403 -;-;-;- 2404 strings 2405 "" 2406 "x" 2407 regexps 2408 "^$^" 2409 0-0;0-0;0-0;0-0 2410 -;-;-;- 2411 "^(?:^$^)$" 2412 0-0;0-0;0-0;0-0 2413 -;-;-;- 2414 "^(?:^$^)" 2415 0-0;0-0;0-0;0-0 2416 -;-;-;- 2417 "(?:^$^)$" 2418 0-0;0-0;0-0;0-0 2419 -;-;-;- 2420 strings 2421 "" 2422 "x" 2423 regexps 2424 "$^$" 2425 0-0;0-0;0-0;0-0 2426 -;-;-;- 2427 "^(?:$^$)$" 2428 0-0;0-0;0-0;0-0 2429 -;-;-;- 2430 "^(?:$^$)" 2431 0-0;0-0;0-0;0-0 2432 -;-;-;- 2433 "(?:$^$)$" 2434 0-0;0-0;0-0;0-0 2435 -;-;-;- 2436 strings 2437 "" 2438 "x\ny" 2439 regexps 2440 "^$^$" 2441 0-0;0-0;0-0;0-0 2442 -;-;-;- 2443 "^(?:^$^$)$" 2444 0-0;0-0;0-0;0-0 2445 -;-;-;- 2446 "^(?:^$^$)" 2447 0-0;0-0;0-0;0-0 2448 -;-;-;- 2449 "(?:^$^$)$" 2450 0-0;0-0;0-0;0-0 2451 -;-;-;- 2452 strings 2453 "" 2454 "x\ny" 2455 regexps 2456 "^$^" 2457 0-0;0-0;0-0;0-0 2458 -;-;-;- 2459 "^(?:^$^)$" 2460 0-0;0-0;0-0;0-0 2461 -;-;-;- 2462 "^(?:^$^)" 2463 0-0;0-0;0-0;0-0 2464 -;-;-;- 2465 "(?:^$^)$" 2466 0-0;0-0;0-0;0-0 2467 -;-;-;- 2468 strings 2469 "" 2470 "x\ny" 2471 regexps 2472 "$^$" 2473 0-0;0-0;0-0;0-0 2474 -;-;-;- 2475 "^(?:$^$)$" 2476 0-0;0-0;0-0;0-0 2477 -;-;-;- 2478 "^(?:$^$)" 2479 0-0;0-0;0-0;0-0 2480 -;-;-;- 2481 "(?:$^$)$" 2482 0-0;0-0;0-0;0-0 2483 -;-;-;- 2484 strings 2485 "" 2486 "x\n\ny" 2487 regexps 2488 "^$^$" 2489 0-0;0-0;0-0;0-0 2490 -;-;-;- 2491 "^(?:^$^$)$" 2492 0-0;0-0;0-0;0-0 2493 -;-;-;- 2494 "^(?:^$^$)" 2495 0-0;0-0;0-0;0-0 2496 -;-;-;- 2497 "(?:^$^$)$" 2498 0-0;0-0;0-0;0-0 2499 -;-;-;- 2500 strings 2501 "" 2502 "x\n\ny" 2503 regexps 2504 "^$^" 2505 0-0;0-0;0-0;0-0 2506 -;-;-;- 2507 "^(?:^$^)$" 2508 0-0;0-0;0-0;0-0 2509 -;-;-;- 2510 "^(?:^$^)" 2511 0-0;0-0;0-0;0-0 2512 -;-;-;- 2513 "(?:^$^)$" 2514 0-0;0-0;0-0;0-0 2515 -;-;-;- 2516 strings 2517 "" 2518 "x\n\ny" 2519 regexps 2520 "$^$" 2521 0-0;0-0;0-0;0-0 2522 -;-;-;- 2523 "^(?:$^$)$" 2524 0-0;0-0;0-0;0-0 2525 -;-;-;- 2526 "^(?:$^$)" 2527 0-0;0-0;0-0;0-0 2528 -;-;-;- 2529 "(?:$^$)$" 2530 0-0;0-0;0-0;0-0 2531 -;-;-;- 2532 strings 2533 "" 2534 "foo$bar" 2535 regexps 2536 "^(foo\\$)$" 2537 -;-;-;- 2538 -;-;-;- 2539 "^(?:^(foo\\$)$)$" 2540 -;-;-;- 2541 -;-;-;- 2542 "^(?:^(foo\\$)$)" 2543 -;-;-;- 2544 -;-;-;- 2545 "(?:^(foo\\$)$)$" 2546 -;-;-;- 2547 -;-;-;- 2548 strings 2549 "" 2550 "foo$bar" 2551 regexps 2552 "(foo\\$)" 2553 -;-;-;- 2554 -;0-4 0-4;-;0-4 0-4 2555 "^(?:(foo\\$))$" 2556 -;-;-;- 2557 -;-;-;- 2558 "^(?:(foo\\$))" 2559 -;-;-;- 2560 -;0-4 0-4;-;0-4 0-4 2561 "(?:(foo\\$))$" 2562 -;-;-;- 2563 -;-;-;- 2564 strings 2565 "" 2566 "abc" 2567 regexps 2568 "^...$" 2569 -;-;-;- 2570 0-3;0-3;0-3;0-3 2571 "^(?:^...$)$" 2572 -;-;-;- 2573 0-3;0-3;0-3;0-3 2574 "^(?:^...$)" 2575 -;-;-;- 2576 0-3;0-3;0-3;0-3 2577 "(?:^...$)$" 2578 -;-;-;- 2579 0-3;0-3;0-3;0-3 2580 strings 2581 "" 2582 "本" 2583 regexps 2584 "^本$" 2585 -;-;-;- 2586 0-3;0-3;0-3;0-3 2587 "^(?:^本$)$" 2588 -;-;-;- 2589 0-3;0-3;0-3;0-3 2590 "^(?:^本$)" 2591 -;-;-;- 2592 0-3;0-3;0-3;0-3 2593 "(?:^本$)$" 2594 -;-;-;- 2595 0-3;0-3;0-3;0-3 2596 strings 2597 "" 2598 "日本語" 2599 regexps 2600 "^...$" 2601 -;-;-;- 2602 0-9;0-9;0-9;0-9 2603 "^(?:^...$)$" 2604 -;-;-;- 2605 0-9;0-9;0-9;0-9 2606 "^(?:^...$)" 2607 -;-;-;- 2608 0-9;0-9;0-9;0-9 2609 "(?:^...$)$" 2610 -;-;-;- 2611 0-9;0-9;0-9;0-9 2612 strings 2613 "" 2614 ".本." 2615 regexps 2616 "^...$" 2617 -;-;-;- 2618 0-5;0-5;0-5;0-5 2619 "^(?:^...$)$" 2620 -;-;-;- 2621 0-5;0-5;0-5;0-5 2622 "^(?:^...$)" 2623 -;-;-;- 2624 0-5;0-5;0-5;0-5 2625 "(?:^...$)$" 2626 -;-;-;- 2627 0-5;0-5;0-5;0-5 2628 strings 2629 "" 2630 "本" 2631 regexps 2632 "^\\C\\C\\C$" 2633 -;-;-;- 2634 0-3;0-3;0-3;0-3 2635 "^(?:^\\C\\C\\C$)$" 2636 -;-;-;- 2637 0-3;0-3;0-3;0-3 2638 "^(?:^\\C\\C\\C$)" 2639 -;-;-;- 2640 0-3;0-3;0-3;0-3 2641 "(?:^\\C\\C\\C$)$" 2642 -;-;-;- 2643 0-3;0-3;0-3;0-3 2644 strings 2645 "" 2646 "本" 2647 regexps 2648 "^\\C$" 2649 -;-;-;- 2650 -;-;-;- 2651 "^(?:^\\C$)$" 2652 -;-;-;- 2653 -;-;-;- 2654 "^(?:^\\C$)" 2655 -;-;-;- 2656 -;-;-;- 2657 "(?:^\\C$)$" 2658 -;-;-;- 2659 -;-;-;- 2660 strings 2661 "" 2662 "日本語" 2663 regexps 2664 "^\\C\\C\\C$" 2665 -;-;-;- 2666 -;-;-;- 2667 "^(?:^\\C\\C\\C$)$" 2668 -;-;-;- 2669 -;-;-;- 2670 "^(?:^\\C\\C\\C$)" 2671 -;-;-;- 2672 -;-;-;- 2673 "(?:^\\C\\C\\C$)$" 2674 -;-;-;- 2675 -;-;-;- 2676 strings 2677 "" 2678 "日本語" 2679 regexps 2680 "^...$" 2681 -;-;-;- 2682 0-9;0-9;0-9;0-9 2683 "^(?:^...$)$" 2684 -;-;-;- 2685 0-9;0-9;0-9;0-9 2686 "^(?:^...$)" 2687 -;-;-;- 2688 0-9;0-9;0-9;0-9 2689 "(?:^...$)$" 2690 -;-;-;- 2691 0-9;0-9;0-9;0-9 2692 strings 2693 "" 2694 "日本語" 2695 regexps 2696 "^.........$" 2697 -;-;-;- 2698 -;-;-;- 2699 "^(?:^.........$)$" 2700 -;-;-;- 2701 -;-;-;- 2702 "^(?:^.........$)" 2703 -;-;-;- 2704 -;-;-;- 2705 "(?:^.........$)$" 2706 -;-;-;- 2707 -;-;-;- 2708 strings 2709 "" 2710 ".本." 2711 regexps 2712 "^...$" 2713 -;-;-;- 2714 0-5;0-5;0-5;0-5 2715 "^(?:^...$)$" 2716 -;-;-;- 2717 0-5;0-5;0-5;0-5 2718 "^(?:^...$)" 2719 -;-;-;- 2720 0-5;0-5;0-5;0-5 2721 "(?:^...$)$" 2722 -;-;-;- 2723 0-5;0-5;0-5;0-5 2724 strings 2725 "" 2726 ".本." 2727 regexps 2728 "^.....$" 2729 -;-;-;- 2730 -;-;-;- 2731 "^(?:^.....$)$" 2732 -;-;-;- 2733 -;-;-;- 2734 "^(?:^.....$)" 2735 -;-;-;- 2736 -;-;-;- 2737 "(?:^.....$)$" 2738 -;-;-;- 2739 -;-;-;- 2740 strings 2741 "" 2742 "xfooo" 2743 regexps 2744 "\\B(fo|foo)\\B" 2745 -;-;-;- 2746 -;1-3 1-3;-;1-4 1-4 2747 "^(?:\\B(fo|foo)\\B)$" 2748 -;-;-;- 2749 -;-;-;- 2750 "^(?:\\B(fo|foo)\\B)" 2751 -;-;-;- 2752 -;-;-;- 2753 "(?:\\B(fo|foo)\\B)$" 2754 -;-;-;- 2755 -;-;-;- 2756 strings 2757 "" 2758 "foo" 2759 regexps 2760 "(fo|foo)" 2761 -;-;-;- 2762 0-3 0-3;0-2 0-2;0-3 0-3;0-3 0-3 2763 "^(?:(fo|foo))$" 2764 -;-;-;- 2765 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 2766 "^(?:(fo|foo))" 2767 -;-;-;- 2768 0-3 0-3;0-2 0-2;0-3 0-3;0-3 0-3 2769 "(?:(fo|foo))$" 2770 -;-;-;- 2771 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 2772 strings 2773 "" 2774 "a" 2775 regexps 2776 "\\141" 2777 -;-;-;- 2778 0-1;0-1;0-1;0-1 2779 "^(?:\\141)$" 2780 -;-;-;- 2781 0-1;0-1;0-1;0-1 2782 "^(?:\\141)" 2783 -;-;-;- 2784 0-1;0-1;0-1;0-1 2785 "(?:\\141)$" 2786 -;-;-;- 2787 0-1;0-1;0-1;0-1 2788 strings 2789 "" 2790 "0" 2791 regexps 2792 "\\060" 2793 -;-;-;- 2794 0-1;0-1;0-1;0-1 2795 "^(?:\\060)$" 2796 -;-;-;- 2797 0-1;0-1;0-1;0-1 2798 "^(?:\\060)" 2799 -;-;-;- 2800 0-1;0-1;0-1;0-1 2801 "(?:\\060)$" 2802 -;-;-;- 2803 0-1;0-1;0-1;0-1 2804 strings 2805 "" 2806 "00" 2807 regexps 2808 "\\0600" 2809 -;-;-;- 2810 0-2;0-2;0-2;0-2 2811 "^(?:\\0600)$" 2812 -;-;-;- 2813 0-2;0-2;0-2;0-2 2814 "^(?:\\0600)" 2815 -;-;-;- 2816 0-2;0-2;0-2;0-2 2817 "(?:\\0600)$" 2818 -;-;-;- 2819 0-2;0-2;0-2;0-2 2820 strings 2821 "" 2822 "08" 2823 regexps 2824 "\\608" 2825 -;-;-;- 2826 0-2;0-2;0-2;0-2 2827 "^(?:\\608)$" 2828 -;-;-;- 2829 0-2;0-2;0-2;0-2 2830 "^(?:\\608)" 2831 -;-;-;- 2832 0-2;0-2;0-2;0-2 2833 "(?:\\608)$" 2834 -;-;-;- 2835 0-2;0-2;0-2;0-2 2836 strings 2837 "" 2838 "" 2839 regexps 2840 "\\01" 2841 -;-;-;- 2842 0-1;0-1;0-1;0-1 2843 "^(?:\\01)$" 2844 -;-;-;- 2845 0-1;0-1;0-1;0-1 2846 "^(?:\\01)" 2847 -;-;-;- 2848 0-1;0-1;0-1;0-1 2849 "(?:\\01)$" 2850 -;-;-;- 2851 0-1;0-1;0-1;0-1 2852 strings 2853 "" 2854 "8" 2855 regexps 2856 "\\018" 2857 -;-;-;- 2858 0-2;0-2;0-2;0-2 2859 "^(?:\\018)$" 2860 -;-;-;- 2861 0-2;0-2;0-2;0-2 2862 "^(?:\\018)" 2863 -;-;-;- 2864 0-2;0-2;0-2;0-2 2865 "(?:\\018)$" 2866 -;-;-;- 2867 0-2;0-2;0-2;0-2 2868 strings 2869 "" 2870 "a" 2871 regexps 2872 "\\x{61}" 2873 -;-;-;- 2874 0-1;0-1;0-1;0-1 2875 "^(?:\\x{61})$" 2876 -;-;-;- 2877 0-1;0-1;0-1;0-1 2878 "^(?:\\x{61})" 2879 -;-;-;- 2880 0-1;0-1;0-1;0-1 2881 "(?:\\x{61})$" 2882 -;-;-;- 2883 0-1;0-1;0-1;0-1 2884 strings 2885 "" 2886 "a" 2887 regexps 2888 "\\x61" 2889 -;-;-;- 2890 0-1;0-1;0-1;0-1 2891 "^(?:\\x61)$" 2892 -;-;-;- 2893 0-1;0-1;0-1;0-1 2894 "^(?:\\x61)" 2895 -;-;-;- 2896 0-1;0-1;0-1;0-1 2897 "(?:\\x61)$" 2898 -;-;-;- 2899 0-1;0-1;0-1;0-1 2900 strings 2901 "" 2902 "a" 2903 regexps 2904 "\\x{00000061}" 2905 -;-;-;- 2906 0-1;0-1;0-1;0-1 2907 "^(?:\\x{00000061})$" 2908 -;-;-;- 2909 0-1;0-1;0-1;0-1 2910 "^(?:\\x{00000061})" 2911 -;-;-;- 2912 0-1;0-1;0-1;0-1 2913 "(?:\\x{00000061})$" 2914 -;-;-;- 2915 0-1;0-1;0-1;0-1 2916 strings 2917 "" 2918 "aαβb" 2919 regexps 2920 "\\p{Greek}+" 2921 -;-;-;- 2922 -;1-5;-;1-5 2923 "^(?:\\p{Greek}+)$" 2924 -;-;-;- 2925 -;-;-;- 2926 "^(?:\\p{Greek}+)" 2927 -;-;-;- 2928 -;-;-;- 2929 "(?:\\p{Greek}+)$" 2930 -;-;-;- 2931 -;-;-;- 2932 strings 2933 "" 2934 "aαβb" 2935 regexps 2936 "\\P{Greek}+" 2937 -;-;-;- 2938 -;0-1;-;0-1 2939 "^(?:\\P{Greek}+)$" 2940 -;-;-;- 2941 -;-;-;- 2942 "^(?:\\P{Greek}+)" 2943 -;-;-;- 2944 -;0-1;-;0-1 2945 "(?:\\P{Greek}+)$" 2946 -;-;-;- 2947 -;5-6;-;5-6 2948 strings 2949 "" 2950 "aαβb" 2951 regexps 2952 "\\p{^Greek}+" 2953 -;-;-;- 2954 -;0-1;-;0-1 2955 "^(?:\\p{^Greek}+)$" 2956 -;-;-;- 2957 -;-;-;- 2958 "^(?:\\p{^Greek}+)" 2959 -;-;-;- 2960 -;0-1;-;0-1 2961 "(?:\\p{^Greek}+)$" 2962 -;-;-;- 2963 -;5-6;-;5-6 2964 strings 2965 "" 2966 "aαβb" 2967 regexps 2968 "\\P{^Greek}+" 2969 -;-;-;- 2970 -;1-5;-;1-5 2971 "^(?:\\P{^Greek}+)$" 2972 -;-;-;- 2973 -;-;-;- 2974 "^(?:\\P{^Greek}+)" 2975 -;-;-;- 2976 -;-;-;- 2977 "(?:\\P{^Greek}+)$" 2978 -;-;-;- 2979 -;-;-;- 2980 strings 2981 "" 2982 "abc123" 2983 regexps 2984 "[^0-9]+" 2985 -;-;-;- 2986 -;0-3;-;0-3 2987 "^(?:[^0-9]+)$" 2988 -;-;-;- 2989 -;-;-;- 2990 "^(?:[^0-9]+)" 2991 -;-;-;- 2992 -;0-3;-;0-3 2993 "(?:[^0-9]+)$" 2994 -;-;-;- 2995 -;-;-;- 2996 strings 2997 "" 2998 "abc123²³¼½¾₀₉" 2999 regexps 3000 "\\p{Nd}+" 3001 -;-;-;- 3002 -;3-6;-;3-6 3003 "^(?:\\p{Nd}+)$" 3004 -;-;-;- 3005 -;-;-;- 3006 "^(?:\\p{Nd}+)" 3007 -;-;-;- 3008 -;-;-;- 3009 "(?:\\p{Nd}+)$" 3010 -;-;-;- 3011 -;-;-;- 3012 strings 3013 "" 3014 "abc123²³¼½¾₀₉" 3015 regexps 3016 "\\p{^Nd}+" 3017 -;-;-;- 3018 -;0-3;-;0-3 3019 "^(?:\\p{^Nd}+)$" 3020 -;-;-;- 3021 -;-;-;- 3022 "^(?:\\p{^Nd}+)" 3023 -;-;-;- 3024 -;0-3;-;0-3 3025 "(?:\\p{^Nd}+)$" 3026 -;-;-;- 3027 -;6-22;-;6-22 3028 strings 3029 "" 3030 "abc123²³¼½¾₀₉" 3031 regexps 3032 "\\P{Nd}+" 3033 -;-;-;- 3034 -;0-3;-;0-3 3035 "^(?:\\P{Nd}+)$" 3036 -;-;-;- 3037 -;-;-;- 3038 "^(?:\\P{Nd}+)" 3039 -;-;-;- 3040 -;0-3;-;0-3 3041 "(?:\\P{Nd}+)$" 3042 -;-;-;- 3043 -;6-22;-;6-22 3044 strings 3045 "" 3046 "abc123²³¼½¾₀₉" 3047 regexps 3048 "\\P{^Nd}+" 3049 -;-;-;- 3050 -;3-6;-;3-6 3051 "^(?:\\P{^Nd}+)$" 3052 -;-;-;- 3053 -;-;-;- 3054 "^(?:\\P{^Nd}+)" 3055 -;-;-;- 3056 -;-;-;- 3057 "(?:\\P{^Nd}+)$" 3058 -;-;-;- 3059 -;-;-;- 3060 strings 3061 "" 3062 "abc123²³¼½¾₀₉" 3063 regexps 3064 "\\pN+" 3065 -;-;-;- 3066 -;3-22;-;3-22 3067 "^(?:\\pN+)$" 3068 -;-;-;- 3069 -;-;-;- 3070 "^(?:\\pN+)" 3071 -;-;-;- 3072 -;-;-;- 3073 "(?:\\pN+)$" 3074 -;-;-;- 3075 -;3-22;-;3-22 3076 strings 3077 "" 3078 "abc123²³¼½¾₀₉" 3079 regexps 3080 "\\p{N}+" 3081 -;-;-;- 3082 -;3-22;-;3-22 3083 "^(?:\\p{N}+)$" 3084 -;-;-;- 3085 -;-;-;- 3086 "^(?:\\p{N}+)" 3087 -;-;-;- 3088 -;-;-;- 3089 "(?:\\p{N}+)$" 3090 -;-;-;- 3091 -;3-22;-;3-22 3092 strings 3093 "" 3094 "abc123²³¼½¾₀₉" 3095 regexps 3096 "\\p{^N}+" 3097 -;-;-;- 3098 -;0-3;-;0-3 3099 "^(?:\\p{^N}+)$" 3100 -;-;-;- 3101 -;-;-;- 3102 "^(?:\\p{^N}+)" 3103 -;-;-;- 3104 -;0-3;-;0-3 3105 "(?:\\p{^N}+)$" 3106 -;-;-;- 3107 -;-;-;- 3108 strings 3109 "" 3110 "abc123" 3111 regexps 3112 "\\p{Any}+" 3113 -;-;-;- 3114 0-6;0-6;0-6;0-6 3115 "^(?:\\p{Any}+)$" 3116 -;-;-;- 3117 0-6;0-6;0-6;0-6 3118 "^(?:\\p{Any}+)" 3119 -;-;-;- 3120 0-6;0-6;0-6;0-6 3121 "(?:\\p{Any}+)$" 3122 -;-;-;- 3123 0-6;0-6;0-6;0-6 3124 strings 3125 "" 3126 "@AaB" 3127 regexps 3128 "(?i)[@-A]+" 3129 -;-;-;- 3130 -;0-3;-;0-3 3131 "^(?:(?i)[@-A]+)$" 3132 -;-;-;- 3133 -;-;-;- 3134 "^(?:(?i)[@-A]+)" 3135 -;-;-;- 3136 -;0-3;-;0-3 3137 "(?:(?i)[@-A]+)$" 3138 -;-;-;- 3139 -;-;-;- 3140 strings 3141 "" 3142 "aAzZ" 3143 regexps 3144 "(?i)[A-Z]+" 3145 -;-;-;- 3146 0-4;0-4;0-4;0-4 3147 "^(?:(?i)[A-Z]+)$" 3148 -;-;-;- 3149 0-4;0-4;0-4;0-4 3150 "^(?:(?i)[A-Z]+)" 3151 -;-;-;- 3152 0-4;0-4;0-4;0-4 3153 "(?:(?i)[A-Z]+)$" 3154 -;-;-;- 3155 0-4;0-4;0-4;0-4 3156 strings 3157 "" 3158 "Aa\\" 3159 regexps 3160 "(?i)[^\\\\]+" 3161 -;-;-;- 3162 -;0-2;-;0-2 3163 "^(?:(?i)[^\\\\]+)$" 3164 -;-;-;- 3165 -;-;-;- 3166 "^(?:(?i)[^\\\\]+)" 3167 -;-;-;- 3168 -;0-2;-;0-2 3169 "(?:(?i)[^\\\\]+)$" 3170 -;-;-;- 3171 -;-;-;- 3172 strings 3173 "" 3174 "acegikmoqsuwyACEGIKMOQSUWY" 3175 regexps 3176 "(?i)[acegikmoqsuwy]+" 3177 -;-;-;- 3178 0-26;0-26;0-26;0-26 3179 "^(?:(?i)[acegikmoqsuwy]+)$" 3180 -;-;-;- 3181 0-26;0-26;0-26;0-26 3182 "^(?:(?i)[acegikmoqsuwy]+)" 3183 -;-;-;- 3184 0-26;0-26;0-26;0-26 3185 "(?:(?i)[acegikmoqsuwy]+)$" 3186 -;-;-;- 3187 0-26;0-26;0-26;0-26 3188 strings 3189 "" 3190 "@AaB" 3191 regexps 3192 "[@-A]+" 3193 -;-;-;- 3194 -;0-2;-;0-2 3195 "^(?:[@-A]+)$" 3196 -;-;-;- 3197 -;-;-;- 3198 "^(?:[@-A]+)" 3199 -;-;-;- 3200 -;0-2;-;0-2 3201 "(?:[@-A]+)$" 3202 -;-;-;- 3203 -;-;-;- 3204 strings 3205 "" 3206 "aAzZ" 3207 regexps 3208 "[A-Z]+" 3209 -;-;-;- 3210 -;1-2;-;1-2 3211 "^(?:[A-Z]+)$" 3212 -;-;-;- 3213 -;-;-;- 3214 "^(?:[A-Z]+)" 3215 -;-;-;- 3216 -;-;-;- 3217 "(?:[A-Z]+)$" 3218 -;-;-;- 3219 -;3-4;-;3-4 3220 strings 3221 "" 3222 "Aa\\" 3223 regexps 3224 "[^\\\\]+" 3225 -;-;-;- 3226 -;0-2;-;0-2 3227 "^(?:[^\\\\]+)$" 3228 -;-;-;- 3229 -;-;-;- 3230 "^(?:[^\\\\]+)" 3231 -;-;-;- 3232 -;0-2;-;0-2 3233 "(?:[^\\\\]+)$" 3234 -;-;-;- 3235 -;-;-;- 3236 strings 3237 "" 3238 "acegikmoqsuwyACEGIKMOQSUWY" 3239 regexps 3240 "[acegikmoqsuwy]+" 3241 -;-;-;- 3242 -;0-13;-;0-13 3243 "^(?:[acegikmoqsuwy]+)$" 3244 -;-;-;- 3245 -;-;-;- 3246 "^(?:[acegikmoqsuwy]+)" 3247 -;-;-;- 3248 -;0-13;-;0-13 3249 "(?:[acegikmoqsuwy]+)$" 3250 -;-;-;- 3251 -;-;-;- 3252 strings 3253 "" 3254 "abcdef" 3255 regexps 3256 "^abc" 3257 -;-;-;- 3258 -;0-3;-;0-3 3259 "^(?:^abc)$" 3260 -;-;-;- 3261 -;-;-;- 3262 "^(?:^abc)" 3263 -;-;-;- 3264 -;0-3;-;0-3 3265 "(?:^abc)$" 3266 -;-;-;- 3267 -;-;-;- 3268 strings 3269 "" 3270 "aabcdef" 3271 regexps 3272 "^abc" 3273 -;-;-;- 3274 -;-;-;- 3275 "^(?:^abc)$" 3276 -;-;-;- 3277 -;-;-;- 3278 "^(?:^abc)" 3279 -;-;-;- 3280 -;-;-;- 3281 "(?:^abc)$" 3282 -;-;-;- 3283 -;-;-;- 3284 strings 3285 "" 3286 "abcdef" 3287 regexps 3288 "^[ay]*[bx]+c" 3289 -;-;-;- 3290 -;0-3;-;0-3 3291 "^(?:^[ay]*[bx]+c)$" 3292 -;-;-;- 3293 -;-;-;- 3294 "^(?:^[ay]*[bx]+c)" 3295 -;-;-;- 3296 -;0-3;-;0-3 3297 "(?:^[ay]*[bx]+c)$" 3298 -;-;-;- 3299 -;-;-;- 3300 strings 3301 "" 3302 "aabcdef" 3303 regexps 3304 "^[ay]*[bx]+c" 3305 -;-;-;- 3306 -;0-4;-;0-4 3307 "^(?:^[ay]*[bx]+c)$" 3308 -;-;-;- 3309 -;-;-;- 3310 "^(?:^[ay]*[bx]+c)" 3311 -;-;-;- 3312 -;0-4;-;0-4 3313 "(?:^[ay]*[bx]+c)$" 3314 -;-;-;- 3315 -;-;-;- 3316 strings 3317 "" 3318 "abcdef" 3319 regexps 3320 "def$" 3321 -;-;-;- 3322 -;3-6;-;3-6 3323 "^(?:def$)$" 3324 -;-;-;- 3325 -;-;-;- 3326 "^(?:def$)" 3327 -;-;-;- 3328 -;-;-;- 3329 "(?:def$)$" 3330 -;-;-;- 3331 -;3-6;-;3-6 3332 strings 3333 "" 3334 "abcdeff" 3335 regexps 3336 "def$" 3337 -;-;-;- 3338 -;-;-;- 3339 "^(?:def$)$" 3340 -;-;-;- 3341 -;-;-;- 3342 "^(?:def$)" 3343 -;-;-;- 3344 -;-;-;- 3345 "(?:def$)$" 3346 -;-;-;- 3347 -;-;-;- 3348 strings 3349 "" 3350 "abcdef" 3351 regexps 3352 "d[ex][fy]$" 3353 -;-;-;- 3354 -;3-6;-;3-6 3355 "^(?:d[ex][fy]$)$" 3356 -;-;-;- 3357 -;-;-;- 3358 "^(?:d[ex][fy]$)" 3359 -;-;-;- 3360 -;-;-;- 3361 "(?:d[ex][fy]$)$" 3362 -;-;-;- 3363 -;3-6;-;3-6 3364 strings 3365 "" 3366 "abcdeff" 3367 regexps 3368 "d[ex][fy]$" 3369 -;-;-;- 3370 -;-;-;- 3371 "^(?:d[ex][fy]$)$" 3372 -;-;-;- 3373 -;-;-;- 3374 "^(?:d[ex][fy]$)" 3375 -;-;-;- 3376 -;-;-;- 3377 "(?:d[ex][fy]$)$" 3378 -;-;-;- 3379 -;-;-;- 3380 strings 3381 "" 3382 "abcdef" 3383 regexps 3384 "[dz][ex][fy]$" 3385 -;-;-;- 3386 -;3-6;-;3-6 3387 "^(?:[dz][ex][fy]$)$" 3388 -;-;-;- 3389 -;-;-;- 3390 "^(?:[dz][ex][fy]$)" 3391 -;-;-;- 3392 -;-;-;- 3393 "(?:[dz][ex][fy]$)$" 3394 -;-;-;- 3395 -;3-6;-;3-6 3396 strings 3397 "" 3398 "abcdeff" 3399 regexps 3400 "[dz][ex][fy]$" 3401 -;-;-;- 3402 -;-;-;- 3403 "^(?:[dz][ex][fy]$)$" 3404 -;-;-;- 3405 -;-;-;- 3406 "^(?:[dz][ex][fy]$)" 3407 -;-;-;- 3408 -;-;-;- 3409 "(?:[dz][ex][fy]$)$" 3410 -;-;-;- 3411 -;-;-;- 3412 strings 3413 "" 3414 "abcdef" 3415 regexps 3416 "(?m)^abc" 3417 -;-;-;- 3418 -;0-3;-;0-3 3419 "^(?:(?m)^abc)$" 3420 -;-;-;- 3421 -;-;-;- 3422 "^(?:(?m)^abc)" 3423 -;-;-;- 3424 -;0-3;-;0-3 3425 "(?:(?m)^abc)$" 3426 -;-;-;- 3427 -;-;-;- 3428 strings 3429 "" 3430 "aabcdef" 3431 regexps 3432 "(?m)^abc" 3433 -;-;-;- 3434 -;-;-;- 3435 "^(?:(?m)^abc)$" 3436 -;-;-;- 3437 -;-;-;- 3438 "^(?:(?m)^abc)" 3439 -;-;-;- 3440 -;-;-;- 3441 "(?:(?m)^abc)$" 3442 -;-;-;- 3443 -;-;-;- 3444 strings 3445 "" 3446 "abcdef" 3447 regexps 3448 "(?m)^[ay]*[bx]+c" 3449 -;-;-;- 3450 -;0-3;-;0-3 3451 "^(?:(?m)^[ay]*[bx]+c)$" 3452 -;-;-;- 3453 -;-;-;- 3454 "^(?:(?m)^[ay]*[bx]+c)" 3455 -;-;-;- 3456 -;0-3;-;0-3 3457 "(?:(?m)^[ay]*[bx]+c)$" 3458 -;-;-;- 3459 -;-;-;- 3460 strings 3461 "" 3462 "aabcdef" 3463 regexps 3464 "(?m)^[ay]*[bx]+c" 3465 -;-;-;- 3466 -;0-4;-;0-4 3467 "^(?:(?m)^[ay]*[bx]+c)$" 3468 -;-;-;- 3469 -;-;-;- 3470 "^(?:(?m)^[ay]*[bx]+c)" 3471 -;-;-;- 3472 -;0-4;-;0-4 3473 "(?:(?m)^[ay]*[bx]+c)$" 3474 -;-;-;- 3475 -;-;-;- 3476 strings 3477 "" 3478 "abcdef" 3479 regexps 3480 "(?m)def$" 3481 -;-;-;- 3482 -;3-6;-;3-6 3483 "^(?:(?m)def$)$" 3484 -;-;-;- 3485 -;-;-;- 3486 "^(?:(?m)def$)" 3487 -;-;-;- 3488 -;-;-;- 3489 "(?:(?m)def$)$" 3490 -;-;-;- 3491 -;3-6;-;3-6 3492 strings 3493 "" 3494 "abcdeff" 3495 regexps 3496 "(?m)def$" 3497 -;-;-;- 3498 -;-;-;- 3499 "^(?:(?m)def$)$" 3500 -;-;-;- 3501 -;-;-;- 3502 "^(?:(?m)def$)" 3503 -;-;-;- 3504 -;-;-;- 3505 "(?:(?m)def$)$" 3506 -;-;-;- 3507 -;-;-;- 3508 strings 3509 "" 3510 "abcdef" 3511 regexps 3512 "(?m)d[ex][fy]$" 3513 -;-;-;- 3514 -;3-6;-;3-6 3515 "^(?:(?m)d[ex][fy]$)$" 3516 -;-;-;- 3517 -;-;-;- 3518 "^(?:(?m)d[ex][fy]$)" 3519 -;-;-;- 3520 -;-;-;- 3521 "(?:(?m)d[ex][fy]$)$" 3522 -;-;-;- 3523 -;3-6;-;3-6 3524 strings 3525 "" 3526 "abcdeff" 3527 regexps 3528 "(?m)d[ex][fy]$" 3529 -;-;-;- 3530 -;-;-;- 3531 "^(?:(?m)d[ex][fy]$)$" 3532 -;-;-;- 3533 -;-;-;- 3534 "^(?:(?m)d[ex][fy]$)" 3535 -;-;-;- 3536 -;-;-;- 3537 "(?:(?m)d[ex][fy]$)$" 3538 -;-;-;- 3539 -;-;-;- 3540 strings 3541 "" 3542 "abcdef" 3543 regexps 3544 "(?m)[dz][ex][fy]$" 3545 -;-;-;- 3546 -;3-6;-;3-6 3547 "^(?:(?m)[dz][ex][fy]$)$" 3548 -;-;-;- 3549 -;-;-;- 3550 "^(?:(?m)[dz][ex][fy]$)" 3551 -;-;-;- 3552 -;-;-;- 3553 "(?:(?m)[dz][ex][fy]$)$" 3554 -;-;-;- 3555 -;3-6;-;3-6 3556 strings 3557 "" 3558 "abcdeff" 3559 regexps 3560 "(?m)[dz][ex][fy]$" 3561 -;-;-;- 3562 -;-;-;- 3563 "^(?:(?m)[dz][ex][fy]$)$" 3564 -;-;-;- 3565 -;-;-;- 3566 "^(?:(?m)[dz][ex][fy]$)" 3567 -;-;-;- 3568 -;-;-;- 3569 "(?:(?m)[dz][ex][fy]$)$" 3570 -;-;-;- 3571 -;-;-;- 3572 strings 3573 "" 3574 "a" 3575 regexps 3576 "^" 3577 0-0;0-0;0-0;0-0 3578 -;0-0;-;0-0 3579 "^(?:^)$" 3580 0-0;0-0;0-0;0-0 3581 -;-;-;- 3582 "^(?:^)" 3583 0-0;0-0;0-0;0-0 3584 -;0-0;-;0-0 3585 "(?:^)$" 3586 0-0;0-0;0-0;0-0 3587 -;-;-;- 3588 strings 3589 "" 3590 "a" 3591 regexps 3592 "^^" 3593 0-0;0-0;0-0;0-0 3594 -;0-0;-;0-0 3595 "^(?:^^)$" 3596 0-0;0-0;0-0;0-0 3597 -;-;-;- 3598 "^(?:^^)" 3599 0-0;0-0;0-0;0-0 3600 -;0-0;-;0-0 3601 "(?:^^)$" 3602 0-0;0-0;0-0;0-0 3603 -;-;-;- 3604 strings 3605 "" 3606 "a" 3607 regexps 3608 "a" 3609 -;-;-;- 3610 0-1;0-1;0-1;0-1 3611 "^(?:a)$" 3612 -;-;-;- 3613 0-1;0-1;0-1;0-1 3614 "^(?:a)" 3615 -;-;-;- 3616 0-1;0-1;0-1;0-1 3617 "(?:a)$" 3618 -;-;-;- 3619 0-1;0-1;0-1;0-1 3620 strings 3621 "" 3622 "a" 3623 regexps 3624 "ab*" 3625 -;-;-;- 3626 0-1;0-1;0-1;0-1 3627 "^(?:ab*)$" 3628 -;-;-;- 3629 0-1;0-1;0-1;0-1 3630 "^(?:ab*)" 3631 -;-;-;- 3632 0-1;0-1;0-1;0-1 3633 "(?:ab*)$" 3634 -;-;-;- 3635 0-1;0-1;0-1;0-1 3636 strings 3637 "" 3638 "a" 3639 regexps 3640 "a\\C*" 3641 -;-;-;- 3642 0-1;0-1;0-1;0-1 3643 "^(?:a\\C*)$" 3644 -;-;-;- 3645 0-1;0-1;0-1;0-1 3646 "^(?:a\\C*)" 3647 -;-;-;- 3648 0-1;0-1;0-1;0-1 3649 "(?:a\\C*)$" 3650 -;-;-;- 3651 0-1;0-1;0-1;0-1 3652 strings 3653 "" 3654 "baba" 3655 regexps 3656 "a\\C*|ba\\C" 3657 -;-;-;- 3658 -;0-3;-;0-3 3659 "^(?:a\\C*|ba\\C)$" 3660 -;-;-;- 3661 -;-;-;- 3662 "^(?:a\\C*|ba\\C)" 3663 -;-;-;- 3664 -;0-3;-;0-3 3665 "(?:a\\C*|ba\\C)$" 3666 -;-;-;- 3667 -;1-4;-;1-4 3668 strings 3669 "abc" 3670 regexps 3671 "a.*?c|a.*?b" 3672 0-3;0-3;0-3;0-3