github.com/ice-blockchain/go/src@v0.0.0-20240403114104-1564d284e521/regexp/testdata/re2-search.txt (about) 1 # RE2 basic search tests built by make log 2 # Wed May 12 12:13:22 EDT 2021 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 "xabcdx" 231 regexps 232 "ab|cd" 233 -;-;-;- 234 -;1-3;-;1-3 235 "^(?:ab|cd)$" 236 -;-;-;- 237 -;-;-;- 238 "^(?:ab|cd)" 239 -;-;-;- 240 -;-;-;- 241 "(?:ab|cd)$" 242 -;-;-;- 243 -;-;-;- 244 strings 245 "" 246 "cab" 247 regexps 248 "a" 249 -;-;-;- 250 -;1-2;-;1-2 251 "^(?:a)$" 252 -;-;-;- 253 -;-;-;- 254 "^(?:a)" 255 -;-;-;- 256 -;-;-;- 257 "(?:a)$" 258 -;-;-;- 259 -;-;-;- 260 strings 261 "" 262 "cab" 263 regexps 264 "a*b" 265 -;-;-;- 266 -;1-3;-;1-3 267 "^(?:a*b)$" 268 -;-;-;- 269 -;-;-;- 270 "^(?:a*b)" 271 -;-;-;- 272 -;-;-;- 273 "(?:a*b)$" 274 -;-;-;- 275 -;1-3;-;1-3 276 strings 277 "" 278 "x" 279 regexps 280 "((((((((((((((((((((x))))))))))))))))))))" 281 -;-;-;- 282 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 283 "^(?:((((((((((((((((((((x)))))))))))))))))))))$" 284 -;-;-;- 285 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 286 "^(?:((((((((((((((((((((x)))))))))))))))))))))" 287 -;-;-;- 288 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 289 "(?:((((((((((((((((((((x)))))))))))))))))))))$" 290 -;-;-;- 291 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 292 strings 293 "" 294 "xxxabcdxxx" 295 regexps 296 "[abcd]" 297 -;-;-;- 298 -;3-4;-;3-4 299 "^(?:[abcd])$" 300 -;-;-;- 301 -;-;-;- 302 "^(?:[abcd])" 303 -;-;-;- 304 -;-;-;- 305 "(?:[abcd])$" 306 -;-;-;- 307 -;-;-;- 308 strings 309 "" 310 "xxxabcdxxx" 311 regexps 312 "[^x]" 313 -;-;-;- 314 -;3-4;-;3-4 315 "^(?:[^x])$" 316 -;-;-;- 317 -;-;-;- 318 "^(?:[^x])" 319 -;-;-;- 320 -;-;-;- 321 "(?:[^x])$" 322 -;-;-;- 323 -;-;-;- 324 strings 325 "" 326 "xxxabcdxxx" 327 regexps 328 "[abcd]+" 329 -;-;-;- 330 -;3-7;-;3-7 331 "^(?:[abcd]+)$" 332 -;-;-;- 333 -;-;-;- 334 "^(?:[abcd]+)" 335 -;-;-;- 336 -;-;-;- 337 "(?:[abcd]+)$" 338 -;-;-;- 339 -;-;-;- 340 strings 341 "" 342 "xxxabcdxxx" 343 regexps 344 "[^x]+" 345 -;-;-;- 346 -;3-7;-;3-7 347 "^(?:[^x]+)$" 348 -;-;-;- 349 -;-;-;- 350 "^(?:[^x]+)" 351 -;-;-;- 352 -;-;-;- 353 "(?:[^x]+)$" 354 -;-;-;- 355 -;-;-;- 356 strings 357 "" 358 "fo" 359 regexps 360 "(fo|foo)" 361 -;-;-;- 362 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 363 "^(?:(fo|foo))$" 364 -;-;-;- 365 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 366 "^(?:(fo|foo))" 367 -;-;-;- 368 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 369 "(?:(fo|foo))$" 370 -;-;-;- 371 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 372 strings 373 "" 374 "foo" 375 regexps 376 "(foo|fo)" 377 -;-;-;- 378 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 379 "^(?:(foo|fo))$" 380 -;-;-;- 381 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 382 "^(?:(foo|fo))" 383 -;-;-;- 384 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 385 "(?:(foo|fo))$" 386 -;-;-;- 387 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 388 strings 389 "" 390 "aA" 391 regexps 392 "aa" 393 -;-;-;- 394 -;-;-;- 395 "^(?:aa)$" 396 -;-;-;- 397 -;-;-;- 398 "^(?:aa)" 399 -;-;-;- 400 -;-;-;- 401 "(?:aa)$" 402 -;-;-;- 403 -;-;-;- 404 strings 405 "" 406 "Aa" 407 regexps 408 "a" 409 -;-;-;- 410 -;1-2;-;1-2 411 "^(?:a)$" 412 -;-;-;- 413 -;-;-;- 414 "^(?:a)" 415 -;-;-;- 416 -;-;-;- 417 "(?:a)$" 418 -;-;-;- 419 -;1-2;-;1-2 420 strings 421 "" 422 "A" 423 regexps 424 "a" 425 -;-;-;- 426 -;-;-;- 427 "^(?:a)$" 428 -;-;-;- 429 -;-;-;- 430 "^(?:a)" 431 -;-;-;- 432 -;-;-;- 433 "(?:a)$" 434 -;-;-;- 435 -;-;-;- 436 strings 437 "" 438 "abc" 439 regexps 440 "ABC" 441 -;-;-;- 442 -;-;-;- 443 "^(?:ABC)$" 444 -;-;-;- 445 -;-;-;- 446 "^(?:ABC)" 447 -;-;-;- 448 -;-;-;- 449 "(?:ABC)$" 450 -;-;-;- 451 -;-;-;- 452 strings 453 "" 454 "XABCY" 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 "foo" 487 regexps 488 "foo|bar|[A-Z]" 489 -;-;-;- 490 0-3;0-3;0-3;0-3 491 "^(?:foo|bar|[A-Z])$" 492 -;-;-;- 493 0-3;0-3;0-3;0-3 494 "^(?:foo|bar|[A-Z])" 495 -;-;-;- 496 0-3;0-3;0-3;0-3 497 "(?:foo|bar|[A-Z])$" 498 -;-;-;- 499 0-3;0-3;0-3;0-3 500 strings 501 "" 502 "foo" 503 regexps 504 "^(foo|bar|[A-Z])" 505 -;-;-;- 506 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 507 "^(?:^(foo|bar|[A-Z]))$" 508 -;-;-;- 509 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 510 "^(?:^(foo|bar|[A-Z]))" 511 -;-;-;- 512 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 513 "(?:^(foo|bar|[A-Z]))$" 514 -;-;-;- 515 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 516 strings 517 "" 518 "foo\n" 519 regexps 520 "(foo|bar|[A-Z])$" 521 -;-;-;- 522 -;-;-;- 523 "^(?:(foo|bar|[A-Z])$)$" 524 -;-;-;- 525 -;-;-;- 526 "^(?:(foo|bar|[A-Z])$)" 527 -;-;-;- 528 -;-;-;- 529 "(?:(foo|bar|[A-Z])$)$" 530 -;-;-;- 531 -;-;-;- 532 strings 533 "" 534 "foo" 535 regexps 536 "(foo|bar|[A-Z])$" 537 -;-;-;- 538 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 539 "^(?:(foo|bar|[A-Z])$)$" 540 -;-;-;- 541 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 542 "^(?:(foo|bar|[A-Z])$)" 543 -;-;-;- 544 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 545 "(?:(foo|bar|[A-Z])$)$" 546 -;-;-;- 547 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 548 strings 549 "" 550 "foo\n" 551 regexps 552 "^(foo|bar|[A-Z])$" 553 -;-;-;- 554 -;-;-;- 555 "^(?:^(foo|bar|[A-Z])$)$" 556 -;-;-;- 557 -;-;-;- 558 "^(?:^(foo|bar|[A-Z])$)" 559 -;-;-;- 560 -;-;-;- 561 "(?:^(foo|bar|[A-Z])$)$" 562 -;-;-;- 563 -;-;-;- 564 strings 565 "" 566 "foo" 567 regexps 568 "^(foo|bar|[A-Z])$" 569 -;-;-;- 570 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 571 "^(?:^(foo|bar|[A-Z])$)$" 572 -;-;-;- 573 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 574 "^(?:^(foo|bar|[A-Z])$)" 575 -;-;-;- 576 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 577 "(?:^(foo|bar|[A-Z])$)$" 578 -;-;-;- 579 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 580 strings 581 "" 582 "bar" 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 "X" 599 regexps 600 "^(foo|bar|[A-Z])$" 601 -;-;-;- 602 0-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 603 "^(?:^(foo|bar|[A-Z])$)$" 604 -;-;-;- 605 0-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 606 "^(?:^(foo|bar|[A-Z])$)" 607 -;-;-;- 608 0-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 609 "(?:^(foo|bar|[A-Z])$)$" 610 -;-;-;- 611 0-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 612 strings 613 "" 614 "XY" 615 regexps 616 "^(foo|bar|[A-Z])$" 617 -;-;-;- 618 -;-;-;- 619 "^(?:^(foo|bar|[A-Z])$)$" 620 -;-;-;- 621 -;-;-;- 622 "^(?:^(foo|bar|[A-Z])$)" 623 -;-;-;- 624 -;-;-;- 625 "(?:^(foo|bar|[A-Z])$)$" 626 -;-;-;- 627 -;-;-;- 628 strings 629 "" 630 "fo" 631 regexps 632 "^(fo|foo)$" 633 -;-;-;- 634 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 635 "^(?:^(fo|foo)$)$" 636 -;-;-;- 637 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 638 "^(?:^(fo|foo)$)" 639 -;-;-;- 640 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 641 "(?:^(fo|foo)$)$" 642 -;-;-;- 643 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 644 strings 645 "" 646 "foo" 647 regexps 648 "^(fo|foo)$" 649 -;-;-;- 650 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 651 "^(?:^(fo|foo)$)$" 652 -;-;-;- 653 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 654 "^(?:^(fo|foo)$)" 655 -;-;-;- 656 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 657 "(?:^(fo|foo)$)$" 658 -;-;-;- 659 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 660 strings 661 "" 662 "fo" 663 regexps 664 "^^(fo|foo)$" 665 -;-;-;- 666 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 667 "^(?:^^(fo|foo)$)$" 668 -;-;-;- 669 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 670 "^(?:^^(fo|foo)$)" 671 -;-;-;- 672 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 673 "(?:^^(fo|foo)$)$" 674 -;-;-;- 675 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 676 strings 677 "" 678 "foo" 679 regexps 680 "^^(fo|foo)$" 681 -;-;-;- 682 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 683 "^(?:^^(fo|foo)$)$" 684 -;-;-;- 685 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 686 "^(?:^^(fo|foo)$)" 687 -;-;-;- 688 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 689 "(?:^^(fo|foo)$)$" 690 -;-;-;- 691 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 692 strings 693 "" 694 "" 695 regexps 696 "^$" 697 0-0;0-0;0-0;0-0 698 0-0;0-0;0-0;0-0 699 "^(?:^$)$" 700 0-0;0-0;0-0;0-0 701 0-0;0-0;0-0;0-0 702 "^(?:^$)" 703 0-0;0-0;0-0;0-0 704 0-0;0-0;0-0;0-0 705 "(?:^$)$" 706 0-0;0-0;0-0;0-0 707 0-0;0-0;0-0;0-0 708 strings 709 "" 710 "x" 711 regexps 712 "^$" 713 0-0;0-0;0-0;0-0 714 -;-;-;- 715 "^(?:^$)$" 716 0-0;0-0;0-0;0-0 717 -;-;-;- 718 "^(?:^$)" 719 0-0;0-0;0-0;0-0 720 -;-;-;- 721 "(?:^$)$" 722 0-0;0-0;0-0;0-0 723 -;-;-;- 724 strings 725 "" 726 "" 727 regexps 728 "^^$" 729 0-0;0-0;0-0;0-0 730 0-0;0-0;0-0;0-0 731 "^(?:^^$)$" 732 0-0;0-0;0-0;0-0 733 0-0;0-0;0-0;0-0 734 "^(?:^^$)" 735 0-0;0-0;0-0;0-0 736 0-0;0-0;0-0;0-0 737 "(?:^^$)$" 738 0-0;0-0;0-0;0-0 739 0-0;0-0;0-0;0-0 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 "x" 759 regexps 760 "^^$" 761 0-0;0-0;0-0;0-0 762 -;-;-;- 763 "^(?:^^$)$" 764 0-0;0-0;0-0;0-0 765 -;-;-;- 766 "^(?:^^$)" 767 0-0;0-0;0-0;0-0 768 -;-;-;- 769 "(?:^^$)$" 770 0-0;0-0;0-0;0-0 771 -;-;-;- 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 "" 791 regexps 792 "^^$$" 793 0-0;0-0;0-0;0-0 794 0-0;0-0;0-0;0-0 795 "^(?:^^$$)$" 796 0-0;0-0;0-0;0-0 797 0-0;0-0;0-0;0-0 798 "^(?:^^$$)" 799 0-0;0-0;0-0;0-0 800 0-0;0-0;0-0;0-0 801 "(?:^^$$)$" 802 0-0;0-0;0-0;0-0 803 0-0;0-0;0-0;0-0 804 strings 805 "" 806 "x" 807 regexps 808 "^^$$" 809 0-0;0-0;0-0;0-0 810 -;-;-;- 811 "^(?:^^$$)$" 812 0-0;0-0;0-0;0-0 813 -;-;-;- 814 "^(?:^^$$)" 815 0-0;0-0;0-0;0-0 816 -;-;-;- 817 "(?:^^$$)$" 818 0-0;0-0;0-0;0-0 819 -;-;-;- 820 strings 821 "" 822 "" 823 regexps 824 "^^^^^^^^$$$$$$$$" 825 0-0;0-0;0-0;0-0 826 0-0;0-0;0-0;0-0 827 "^(?:^^^^^^^^$$$$$$$$)$" 828 0-0;0-0;0-0;0-0 829 0-0;0-0;0-0;0-0 830 "^(?:^^^^^^^^$$$$$$$$)" 831 0-0;0-0;0-0;0-0 832 0-0;0-0;0-0;0-0 833 "(?:^^^^^^^^$$$$$$$$)$" 834 0-0;0-0;0-0;0-0 835 0-0;0-0;0-0;0-0 836 strings 837 "" 838 "x" 839 regexps 840 "^" 841 0-0;0-0;0-0;0-0 842 -;0-0;-;0-0 843 "^(?:^)$" 844 0-0;0-0;0-0;0-0 845 -;-;-;- 846 "^(?:^)" 847 0-0;0-0;0-0;0-0 848 -;0-0;-;0-0 849 "(?:^)$" 850 0-0;0-0;0-0;0-0 851 -;-;-;- 852 strings 853 "" 854 "x" 855 regexps 856 "$" 857 0-0;0-0;0-0;0-0 858 -;1-1;-;1-1 859 "^(?:$)$" 860 0-0;0-0;0-0;0-0 861 -;-;-;- 862 "^(?:$)" 863 0-0;0-0;0-0;0-0 864 -;-;-;- 865 "(?:$)$" 866 0-0;0-0;0-0;0-0 867 -;1-1;-;1-1 868 strings 869 "" 870 "nofoo foo that" 871 regexps 872 "\\bfoo\\b" 873 -;-;-;- 874 -;6-9;-;6-9 875 "^(?:\\bfoo\\b)$" 876 -;-;-;- 877 -;-;-;- 878 "^(?:\\bfoo\\b)" 879 -;-;-;- 880 -;-;-;- 881 "(?:\\bfoo\\b)$" 882 -;-;-;- 883 -;-;-;- 884 strings 885 "" 886 "faoa x" 887 regexps 888 "a\\b" 889 -;-;-;- 890 -;3-4;-;3-4 891 "^(?:a\\b)$" 892 -;-;-;- 893 -;-;-;- 894 "^(?:a\\b)" 895 -;-;-;- 896 -;-;-;- 897 "(?:a\\b)$" 898 -;-;-;- 899 -;-;-;- 900 strings 901 "" 902 "bar x" 903 regexps 904 "\\bbar" 905 -;-;-;- 906 -;0-3;-;0-3 907 "^(?:\\bbar)$" 908 -;-;-;- 909 -;-;-;- 910 "^(?:\\bbar)" 911 -;-;-;- 912 -;0-3;-;0-3 913 "(?:\\bbar)$" 914 -;-;-;- 915 -;-;-;- 916 strings 917 "" 918 "foo\nbar x" 919 regexps 920 "\\bbar" 921 -;-;-;- 922 -;4-7;-;4-7 923 "^(?:\\bbar)$" 924 -;-;-;- 925 -;-;-;- 926 "^(?:\\bbar)" 927 -;-;-;- 928 -;-;-;- 929 "(?:\\bbar)$" 930 -;-;-;- 931 -;-;-;- 932 strings 933 "" 934 "foobar" 935 regexps 936 "bar\\b" 937 -;-;-;- 938 -;3-6;-;3-6 939 "^(?:bar\\b)$" 940 -;-;-;- 941 -;-;-;- 942 "^(?:bar\\b)" 943 -;-;-;- 944 -;-;-;- 945 "(?:bar\\b)$" 946 -;-;-;- 947 -;3-6;-;3-6 948 strings 949 "" 950 "foobar\nxxx" 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 -;-;-;- 964 strings 965 "" 966 "foo" 967 regexps 968 "(foo|bar|[A-Z])\\b" 969 -;-;-;- 970 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 971 "^(?:(foo|bar|[A-Z])\\b)$" 972 -;-;-;- 973 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 974 "^(?:(foo|bar|[A-Z])\\b)" 975 -;-;-;- 976 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 977 "(?:(foo|bar|[A-Z])\\b)$" 978 -;-;-;- 979 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 980 strings 981 "" 982 "foo\n" 983 regexps 984 "(foo|bar|[A-Z])\\b" 985 -;-;-;- 986 -;0-3 0-3;-;0-3 0-3 987 "^(?:(foo|bar|[A-Z])\\b)$" 988 -;-;-;- 989 -;-;-;- 990 "^(?:(foo|bar|[A-Z])\\b)" 991 -;-;-;- 992 -;0-3 0-3;-;0-3 0-3 993 "(?:(foo|bar|[A-Z])\\b)$" 994 -;-;-;- 995 -;-;-;- 996 strings 997 "" 998 "" 999 regexps 1000 "\\b" 1001 -;-;-;- 1002 -;-;-;- 1003 "^(?:\\b)$" 1004 -;-;-;- 1005 -;-;-;- 1006 "^(?:\\b)" 1007 -;-;-;- 1008 -;-;-;- 1009 "(?:\\b)$" 1010 -;-;-;- 1011 -;-;-;- 1012 strings 1013 "" 1014 "x" 1015 regexps 1016 "\\b" 1017 -;-;-;- 1018 -;0-0;-;0-0 1019 "^(?:\\b)$" 1020 -;-;-;- 1021 -;-;-;- 1022 "^(?:\\b)" 1023 -;-;-;- 1024 -;0-0;-;0-0 1025 "(?:\\b)$" 1026 -;-;-;- 1027 -;1-1;-;1-1 1028 strings 1029 "" 1030 "foo" 1031 regexps 1032 "\\b(foo|bar|[A-Z])" 1033 -;-;-;- 1034 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1035 "^(?:\\b(foo|bar|[A-Z]))$" 1036 -;-;-;- 1037 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1038 "^(?:\\b(foo|bar|[A-Z]))" 1039 -;-;-;- 1040 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1041 "(?:\\b(foo|bar|[A-Z]))$" 1042 -;-;-;- 1043 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1044 strings 1045 "" 1046 "X" 1047 regexps 1048 "\\b(foo|bar|[A-Z])\\b" 1049 -;-;-;- 1050 0-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 1051 "^(?:\\b(foo|bar|[A-Z])\\b)$" 1052 -;-;-;- 1053 0-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 1054 "^(?:\\b(foo|bar|[A-Z])\\b)" 1055 -;-;-;- 1056 0-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 1057 "(?:\\b(foo|bar|[A-Z])\\b)$" 1058 -;-;-;- 1059 0-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 1060 strings 1061 "" 1062 "XY" 1063 regexps 1064 "\\b(foo|bar|[A-Z])\\b" 1065 -;-;-;- 1066 -;-;-;- 1067 "^(?:\\b(foo|bar|[A-Z])\\b)$" 1068 -;-;-;- 1069 -;-;-;- 1070 "^(?:\\b(foo|bar|[A-Z])\\b)" 1071 -;-;-;- 1072 -;-;-;- 1073 "(?:\\b(foo|bar|[A-Z])\\b)$" 1074 -;-;-;- 1075 -;-;-;- 1076 strings 1077 "" 1078 "bar" 1079 regexps 1080 "\\b(foo|bar|[A-Z])\\b" 1081 -;-;-;- 1082 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1083 "^(?:\\b(foo|bar|[A-Z])\\b)$" 1084 -;-;-;- 1085 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1086 "^(?:\\b(foo|bar|[A-Z])\\b)" 1087 -;-;-;- 1088 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1089 "(?:\\b(foo|bar|[A-Z])\\b)$" 1090 -;-;-;- 1091 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1092 strings 1093 "" 1094 "foo" 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\n" 1111 regexps 1112 "\\b(foo|bar|[A-Z])\\b" 1113 -;-;-;- 1114 -;0-3 0-3;-;0-3 0-3 1115 "^(?:\\b(foo|bar|[A-Z])\\b)$" 1116 -;-;-;- 1117 -;-;-;- 1118 "^(?:\\b(foo|bar|[A-Z])\\b)" 1119 -;-;-;- 1120 -;0-3 0-3;-;0-3 0-3 1121 "(?:\\b(foo|bar|[A-Z])\\b)$" 1122 -;-;-;- 1123 -;-;-;- 1124 strings 1125 "" 1126 "ffoo bbar N x" 1127 regexps 1128 "\\b(foo|bar|[A-Z])\\b" 1129 -;-;-;- 1130 -;10-11 10-11;-;10-11 10-11 1131 "^(?:\\b(foo|bar|[A-Z])\\b)$" 1132 -;-;-;- 1133 -;-;-;- 1134 "^(?:\\b(foo|bar|[A-Z])\\b)" 1135 -;-;-;- 1136 -;-;-;- 1137 "(?:\\b(foo|bar|[A-Z])\\b)$" 1138 -;-;-;- 1139 -;-;-;- 1140 strings 1141 "" 1142 "fo" 1143 regexps 1144 "\\b(fo|foo)\\b" 1145 -;-;-;- 1146 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1147 "^(?:\\b(fo|foo)\\b)$" 1148 -;-;-;- 1149 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1150 "^(?:\\b(fo|foo)\\b)" 1151 -;-;-;- 1152 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1153 "(?:\\b(fo|foo)\\b)$" 1154 -;-;-;- 1155 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1156 strings 1157 "" 1158 "foo" 1159 regexps 1160 "\\b(fo|foo)\\b" 1161 -;-;-;- 1162 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1163 "^(?:\\b(fo|foo)\\b)$" 1164 -;-;-;- 1165 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1166 "^(?:\\b(fo|foo)\\b)" 1167 -;-;-;- 1168 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1169 "(?:\\b(fo|foo)\\b)$" 1170 -;-;-;- 1171 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1172 strings 1173 "" 1174 "" 1175 regexps 1176 "\\b\\b" 1177 -;-;-;- 1178 -;-;-;- 1179 "^(?:\\b\\b)$" 1180 -;-;-;- 1181 -;-;-;- 1182 "^(?:\\b\\b)" 1183 -;-;-;- 1184 -;-;-;- 1185 "(?:\\b\\b)$" 1186 -;-;-;- 1187 -;-;-;- 1188 strings 1189 "" 1190 "x" 1191 regexps 1192 "\\b\\b" 1193 -;-;-;- 1194 -;0-0;-;0-0 1195 "^(?:\\b\\b)$" 1196 -;-;-;- 1197 -;-;-;- 1198 "^(?:\\b\\b)" 1199 -;-;-;- 1200 -;0-0;-;0-0 1201 "(?:\\b\\b)$" 1202 -;-;-;- 1203 -;1-1;-;1-1 1204 strings 1205 "" 1206 "" 1207 regexps 1208 "\\b$" 1209 -;-;-;- 1210 -;-;-;- 1211 "^(?:\\b$)$" 1212 -;-;-;- 1213 -;-;-;- 1214 "^(?:\\b$)" 1215 -;-;-;- 1216 -;-;-;- 1217 "(?:\\b$)$" 1218 -;-;-;- 1219 -;-;-;- 1220 strings 1221 "" 1222 "x" 1223 regexps 1224 "\\b$" 1225 -;-;-;- 1226 -;1-1;-;1-1 1227 "^(?:\\b$)$" 1228 -;-;-;- 1229 -;-;-;- 1230 "^(?:\\b$)" 1231 -;-;-;- 1232 -;-;-;- 1233 "(?:\\b$)$" 1234 -;-;-;- 1235 -;1-1;-;1-1 1236 strings 1237 "" 1238 "y x" 1239 regexps 1240 "\\b$" 1241 -;-;-;- 1242 -;3-3;-;3-3 1243 "^(?:\\b$)$" 1244 -;-;-;- 1245 -;-;-;- 1246 "^(?:\\b$)" 1247 -;-;-;- 1248 -;-;-;- 1249 "(?:\\b$)$" 1250 -;-;-;- 1251 -;3-3;-;3-3 1252 strings 1253 "" 1254 "x" 1255 regexps 1256 "\\b.$" 1257 -;-;-;- 1258 0-1;0-1;0-1;0-1 1259 "^(?:\\b.$)$" 1260 -;-;-;- 1261 0-1;0-1;0-1;0-1 1262 "^(?:\\b.$)" 1263 -;-;-;- 1264 0-1;0-1;0-1;0-1 1265 "(?:\\b.$)$" 1266 -;-;-;- 1267 0-1;0-1;0-1;0-1 1268 strings 1269 "" 1270 "fo" 1271 regexps 1272 "^\\b(fo|foo)\\b" 1273 -;-;-;- 1274 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1275 "^(?:^\\b(fo|foo)\\b)$" 1276 -;-;-;- 1277 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1278 "^(?:^\\b(fo|foo)\\b)" 1279 -;-;-;- 1280 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1281 "(?:^\\b(fo|foo)\\b)$" 1282 -;-;-;- 1283 0-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1284 strings 1285 "" 1286 "foo" 1287 regexps 1288 "^\\b(fo|foo)\\b" 1289 -;-;-;- 1290 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1291 "^(?:^\\b(fo|foo)\\b)$" 1292 -;-;-;- 1293 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1294 "^(?:^\\b(fo|foo)\\b)" 1295 -;-;-;- 1296 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1297 "(?:^\\b(fo|foo)\\b)$" 1298 -;-;-;- 1299 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1300 strings 1301 "" 1302 "" 1303 regexps 1304 "^\\b" 1305 -;-;-;- 1306 -;-;-;- 1307 "^(?:^\\b)$" 1308 -;-;-;- 1309 -;-;-;- 1310 "^(?:^\\b)" 1311 -;-;-;- 1312 -;-;-;- 1313 "(?:^\\b)$" 1314 -;-;-;- 1315 -;-;-;- 1316 strings 1317 "" 1318 "x" 1319 regexps 1320 "^\\b" 1321 -;-;-;- 1322 -;0-0;-;0-0 1323 "^(?:^\\b)$" 1324 -;-;-;- 1325 -;-;-;- 1326 "^(?:^\\b)" 1327 -;-;-;- 1328 -;0-0;-;0-0 1329 "(?:^\\b)$" 1330 -;-;-;- 1331 -;-;-;- 1332 strings 1333 "" 1334 "" 1335 regexps 1336 "^\\b\\b" 1337 -;-;-;- 1338 -;-;-;- 1339 "^(?:^\\b\\b)$" 1340 -;-;-;- 1341 -;-;-;- 1342 "^(?:^\\b\\b)" 1343 -;-;-;- 1344 -;-;-;- 1345 "(?:^\\b\\b)$" 1346 -;-;-;- 1347 -;-;-;- 1348 strings 1349 "" 1350 "x" 1351 regexps 1352 "^\\b\\b" 1353 -;-;-;- 1354 -;0-0;-;0-0 1355 "^(?:^\\b\\b)$" 1356 -;-;-;- 1357 -;-;-;- 1358 "^(?:^\\b\\b)" 1359 -;-;-;- 1360 -;0-0;-;0-0 1361 "(?:^\\b\\b)$" 1362 -;-;-;- 1363 -;-;-;- 1364 strings 1365 "" 1366 "" 1367 regexps 1368 "^\\b$" 1369 -;-;-;- 1370 -;-;-;- 1371 "^(?:^\\b$)$" 1372 -;-;-;- 1373 -;-;-;- 1374 "^(?:^\\b$)" 1375 -;-;-;- 1376 -;-;-;- 1377 "(?:^\\b$)$" 1378 -;-;-;- 1379 -;-;-;- 1380 strings 1381 "" 1382 "x" 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 0-1;0-1;0-1;0-1 1403 "^(?:^\\b.$)$" 1404 -;-;-;- 1405 0-1;0-1;0-1;0-1 1406 "^(?:^\\b.$)" 1407 -;-;-;- 1408 0-1;0-1;0-1;0-1 1409 "(?:^\\b.$)$" 1410 -;-;-;- 1411 0-1;0-1;0-1;0-1 1412 strings 1413 "" 1414 "x" 1415 regexps 1416 "^\\b.\\b$" 1417 -;-;-;- 1418 0-1;0-1;0-1;0-1 1419 "^(?:^\\b.\\b$)$" 1420 -;-;-;- 1421 0-1;0-1;0-1;0-1 1422 "^(?:^\\b.\\b$)" 1423 -;-;-;- 1424 0-1;0-1;0-1;0-1 1425 "(?:^\\b.\\b$)$" 1426 -;-;-;- 1427 0-1;0-1;0-1;0-1 1428 strings 1429 "" 1430 "" 1431 regexps 1432 "^^^^^^^^\\b$$$$$$$" 1433 -;-;-;- 1434 -;-;-;- 1435 "^(?:^^^^^^^^\\b$$$$$$$)$" 1436 -;-;-;- 1437 -;-;-;- 1438 "^(?:^^^^^^^^\\b$$$$$$$)" 1439 -;-;-;- 1440 -;-;-;- 1441 "(?:^^^^^^^^\\b$$$$$$$)$" 1442 -;-;-;- 1443 -;-;-;- 1444 strings 1445 "" 1446 "x" 1447 regexps 1448 "^^^^^^^^\\b.$$$$$$" 1449 -;-;-;- 1450 0-1;0-1;0-1;0-1 1451 "^(?:^^^^^^^^\\b.$$$$$$)$" 1452 -;-;-;- 1453 0-1;0-1;0-1;0-1 1454 "^(?:^^^^^^^^\\b.$$$$$$)" 1455 -;-;-;- 1456 0-1;0-1;0-1;0-1 1457 "(?:^^^^^^^^\\b.$$$$$$)$" 1458 -;-;-;- 1459 0-1;0-1;0-1;0-1 1460 strings 1461 "" 1462 "x" 1463 regexps 1464 "^^^^^^^^\\b$$$$$$$" 1465 -;-;-;- 1466 -;-;-;- 1467 "^(?:^^^^^^^^\\b$$$$$$$)$" 1468 -;-;-;- 1469 -;-;-;- 1470 "^(?:^^^^^^^^\\b$$$$$$$)" 1471 -;-;-;- 1472 -;-;-;- 1473 "(?:^^^^^^^^\\b$$$$$$$)$" 1474 -;-;-;- 1475 -;-;-;- 1476 strings 1477 "" 1478 "n foo xfoox that" 1479 regexps 1480 "\\Bfoo\\B" 1481 -;-;-;- 1482 -;7-10;-;7-10 1483 "^(?:\\Bfoo\\B)$" 1484 -;-;-;- 1485 -;-;-;- 1486 "^(?:\\Bfoo\\B)" 1487 -;-;-;- 1488 -;-;-;- 1489 "(?:\\Bfoo\\B)$" 1490 -;-;-;- 1491 -;-;-;- 1492 strings 1493 "" 1494 "faoa x" 1495 regexps 1496 "a\\B" 1497 -;-;-;- 1498 -;1-2;-;1-2 1499 "^(?:a\\B)$" 1500 -;-;-;- 1501 -;-;-;- 1502 "^(?:a\\B)" 1503 -;-;-;- 1504 -;-;-;- 1505 "(?:a\\B)$" 1506 -;-;-;- 1507 -;-;-;- 1508 strings 1509 "" 1510 "bar x" 1511 regexps 1512 "\\Bbar" 1513 -;-;-;- 1514 -;-;-;- 1515 "^(?:\\Bbar)$" 1516 -;-;-;- 1517 -;-;-;- 1518 "^(?:\\Bbar)" 1519 -;-;-;- 1520 -;-;-;- 1521 "(?:\\Bbar)$" 1522 -;-;-;- 1523 -;-;-;- 1524 strings 1525 "" 1526 "foo\nbar x" 1527 regexps 1528 "\\Bbar" 1529 -;-;-;- 1530 -;-;-;- 1531 "^(?:\\Bbar)$" 1532 -;-;-;- 1533 -;-;-;- 1534 "^(?:\\Bbar)" 1535 -;-;-;- 1536 -;-;-;- 1537 "(?:\\Bbar)$" 1538 -;-;-;- 1539 -;-;-;- 1540 strings 1541 "" 1542 "foobar" 1543 regexps 1544 "bar\\B" 1545 -;-;-;- 1546 -;-;-;- 1547 "^(?:bar\\B)$" 1548 -;-;-;- 1549 -;-;-;- 1550 "^(?:bar\\B)" 1551 -;-;-;- 1552 -;-;-;- 1553 "(?:bar\\B)$" 1554 -;-;-;- 1555 -;-;-;- 1556 strings 1557 "" 1558 "foobar\nxxx" 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 "foox" 1575 regexps 1576 "(foo|bar|[A-Z])\\B" 1577 -;-;-;- 1578 -;0-3 0-3;-;0-3 0-3 1579 "^(?:(foo|bar|[A-Z])\\B)$" 1580 -;-;-;- 1581 -;-;-;- 1582 "^(?:(foo|bar|[A-Z])\\B)" 1583 -;-;-;- 1584 -;0-3 0-3;-;0-3 0-3 1585 "(?:(foo|bar|[A-Z])\\B)$" 1586 -;-;-;- 1587 -;-;-;- 1588 strings 1589 "" 1590 "foo\n" 1591 regexps 1592 "(foo|bar|[A-Z])\\B" 1593 -;-;-;- 1594 -;-;-;- 1595 "^(?:(foo|bar|[A-Z])\\B)$" 1596 -;-;-;- 1597 -;-;-;- 1598 "^(?:(foo|bar|[A-Z])\\B)" 1599 -;-;-;- 1600 -;-;-;- 1601 "(?:(foo|bar|[A-Z])\\B)$" 1602 -;-;-;- 1603 -;-;-;- 1604 strings 1605 "" 1606 "" 1607 regexps 1608 "\\B" 1609 0-0;0-0;0-0;0-0 1610 0-0;0-0;0-0;0-0 1611 "^(?:\\B)$" 1612 0-0;0-0;0-0;0-0 1613 0-0;0-0;0-0;0-0 1614 "^(?:\\B)" 1615 0-0;0-0;0-0;0-0 1616 0-0;0-0;0-0;0-0 1617 "(?:\\B)$" 1618 0-0;0-0;0-0;0-0 1619 0-0;0-0;0-0;0-0 1620 strings 1621 "" 1622 "x" 1623 regexps 1624 "\\B" 1625 0-0;0-0;0-0;0-0 1626 -;-;-;- 1627 "^(?:\\B)$" 1628 0-0;0-0;0-0;0-0 1629 -;-;-;- 1630 "^(?:\\B)" 1631 0-0;0-0;0-0;0-0 1632 -;-;-;- 1633 "(?:\\B)$" 1634 0-0;0-0;0-0;0-0 1635 -;-;-;- 1636 strings 1637 "" 1638 "foo" 1639 regexps 1640 "\\B(foo|bar|[A-Z])" 1641 -;-;-;- 1642 -;-;-;- 1643 "^(?:\\B(foo|bar|[A-Z]))$" 1644 -;-;-;- 1645 -;-;-;- 1646 "^(?:\\B(foo|bar|[A-Z]))" 1647 -;-;-;- 1648 -;-;-;- 1649 "(?:\\B(foo|bar|[A-Z]))$" 1650 -;-;-;- 1651 -;-;-;- 1652 strings 1653 "" 1654 "xXy" 1655 regexps 1656 "\\B(foo|bar|[A-Z])\\B" 1657 -;-;-;- 1658 -;1-2 1-2;-;1-2 1-2 1659 "^(?:\\B(foo|bar|[A-Z])\\B)$" 1660 -;-;-;- 1661 -;-;-;- 1662 "^(?:\\B(foo|bar|[A-Z])\\B)" 1663 -;-;-;- 1664 -;-;-;- 1665 "(?:\\B(foo|bar|[A-Z])\\B)$" 1666 -;-;-;- 1667 -;-;-;- 1668 strings 1669 "" 1670 "XY" 1671 regexps 1672 "\\B(foo|bar|[A-Z])\\B" 1673 -;-;-;- 1674 -;-;-;- 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 "XYZ" 1687 regexps 1688 "\\B(foo|bar|[A-Z])\\B" 1689 -;-;-;- 1690 -;1-2 1-2;-;1-2 1-2 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 "abara" 1703 regexps 1704 "\\B(foo|bar|[A-Z])\\B" 1705 -;-;-;- 1706 -;1-4 1-4;-;1-4 1-4 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 "xfoo_" 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\n" 1735 regexps 1736 "\\B(foo|bar|[A-Z])\\B" 1737 -;-;-;- 1738 -;-;-;- 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 "foo bar vNx" 1751 regexps 1752 "\\B(foo|bar|[A-Z])\\B" 1753 -;-;-;- 1754 -;9-10 9-10;-;9-10 9-10 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 "xfoo" 1767 regexps 1768 "\\B(fo|foo)\\B" 1769 -;-;-;- 1770 -;1-3 1-3;-;1-3 1-3 1771 "^(?:\\B(fo|foo)\\B)$" 1772 -;-;-;- 1773 -;-;-;- 1774 "^(?:\\B(fo|foo)\\B)" 1775 -;-;-;- 1776 -;-;-;- 1777 "(?:\\B(fo|foo)\\B)$" 1778 -;-;-;- 1779 -;-;-;- 1780 strings 1781 "" 1782 "xfooo" 1783 regexps 1784 "\\B(foo|fo)\\B" 1785 -;-;-;- 1786 -;1-4 1-4;-;1-4 1-4 1787 "^(?:\\B(foo|fo)\\B)$" 1788 -;-;-;- 1789 -;-;-;- 1790 "^(?:\\B(foo|fo)\\B)" 1791 -;-;-;- 1792 -;-;-;- 1793 "(?:\\B(foo|fo)\\B)$" 1794 -;-;-;- 1795 -;-;-;- 1796 strings 1797 "" 1798 "" 1799 regexps 1800 "\\B\\B" 1801 0-0;0-0;0-0;0-0 1802 0-0;0-0;0-0;0-0 1803 "^(?:\\B\\B)$" 1804 0-0;0-0;0-0;0-0 1805 0-0;0-0;0-0;0-0 1806 "^(?:\\B\\B)" 1807 0-0;0-0;0-0;0-0 1808 0-0;0-0;0-0;0-0 1809 "(?:\\B\\B)$" 1810 0-0;0-0;0-0;0-0 1811 0-0;0-0;0-0;0-0 1812 strings 1813 "" 1814 "x" 1815 regexps 1816 "\\B\\B" 1817 0-0;0-0;0-0;0-0 1818 -;-;-;- 1819 "^(?:\\B\\B)$" 1820 0-0;0-0;0-0;0-0 1821 -;-;-;- 1822 "^(?:\\B\\B)" 1823 0-0;0-0;0-0;0-0 1824 -;-;-;- 1825 "(?:\\B\\B)$" 1826 0-0;0-0;0-0;0-0 1827 -;-;-;- 1828 strings 1829 "" 1830 "" 1831 regexps 1832 "\\B$" 1833 0-0;0-0;0-0;0-0 1834 0-0;0-0;0-0;0-0 1835 "^(?:\\B$)$" 1836 0-0;0-0;0-0;0-0 1837 0-0;0-0;0-0;0-0 1838 "^(?:\\B$)" 1839 0-0;0-0;0-0;0-0 1840 0-0;0-0;0-0;0-0 1841 "(?:\\B$)$" 1842 0-0;0-0;0-0;0-0 1843 0-0;0-0;0-0;0-0 1844 strings 1845 "" 1846 "x" 1847 regexps 1848 "\\B$" 1849 0-0;0-0;0-0;0-0 1850 -;-;-;- 1851 "^(?:\\B$)$" 1852 0-0;0-0;0-0;0-0 1853 -;-;-;- 1854 "^(?:\\B$)" 1855 0-0;0-0;0-0;0-0 1856 -;-;-;- 1857 "(?:\\B$)$" 1858 0-0;0-0;0-0;0-0 1859 -;-;-;- 1860 strings 1861 "" 1862 "y 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 "x" 1879 regexps 1880 "\\B.$" 1881 -;-;-;- 1882 -;-;-;- 1883 "^(?:\\B.$)$" 1884 -;-;-;- 1885 -;-;-;- 1886 "^(?:\\B.$)" 1887 -;-;-;- 1888 -;-;-;- 1889 "(?:\\B.$)$" 1890 -;-;-;- 1891 -;-;-;- 1892 strings 1893 "" 1894 "fo" 1895 regexps 1896 "^\\B(fo|foo)\\B" 1897 -;-;-;- 1898 -;-;-;- 1899 "^(?:^\\B(fo|foo)\\B)$" 1900 -;-;-;- 1901 -;-;-;- 1902 "^(?:^\\B(fo|foo)\\B)" 1903 -;-;-;- 1904 -;-;-;- 1905 "(?:^\\B(fo|foo)\\B)$" 1906 -;-;-;- 1907 -;-;-;- 1908 strings 1909 "" 1910 "foo" 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 "" 1927 regexps 1928 "^\\B" 1929 0-0;0-0;0-0;0-0 1930 0-0;0-0;0-0;0-0 1931 "^(?:^\\B)$" 1932 0-0;0-0;0-0;0-0 1933 0-0;0-0;0-0;0-0 1934 "^(?:^\\B)" 1935 0-0;0-0;0-0;0-0 1936 0-0;0-0;0-0;0-0 1937 "(?:^\\B)$" 1938 0-0;0-0;0-0;0-0 1939 0-0;0-0;0-0;0-0 1940 strings 1941 "" 1942 "x" 1943 regexps 1944 "^\\B" 1945 0-0;0-0;0-0;0-0 1946 -;-;-;- 1947 "^(?:^\\B)$" 1948 0-0;0-0;0-0;0-0 1949 -;-;-;- 1950 "^(?:^\\B)" 1951 0-0;0-0;0-0;0-0 1952 -;-;-;- 1953 "(?:^\\B)$" 1954 0-0;0-0;0-0;0-0 1955 -;-;-;- 1956 strings 1957 "" 1958 "" 1959 regexps 1960 "^\\B\\B" 1961 0-0;0-0;0-0;0-0 1962 0-0;0-0;0-0;0-0 1963 "^(?:^\\B\\B)$" 1964 0-0;0-0;0-0;0-0 1965 0-0;0-0;0-0;0-0 1966 "^(?:^\\B\\B)" 1967 0-0;0-0;0-0;0-0 1968 0-0;0-0;0-0;0-0 1969 "(?:^\\B\\B)$" 1970 0-0;0-0;0-0;0-0 1971 0-0;0-0;0-0;0-0 1972 strings 1973 "" 1974 "x" 1975 regexps 1976 "^\\B\\B" 1977 0-0;0-0;0-0;0-0 1978 -;-;-;- 1979 "^(?:^\\B\\B)$" 1980 0-0;0-0;0-0;0-0 1981 -;-;-;- 1982 "^(?:^\\B\\B)" 1983 0-0;0-0;0-0;0-0 1984 -;-;-;- 1985 "(?:^\\B\\B)$" 1986 0-0;0-0;0-0;0-0 1987 -;-;-;- 1988 strings 1989 "" 1990 "" 1991 regexps 1992 "^\\B$" 1993 0-0;0-0;0-0;0-0 1994 0-0;0-0;0-0;0-0 1995 "^(?:^\\B$)$" 1996 0-0;0-0;0-0;0-0 1997 0-0;0-0;0-0;0-0 1998 "^(?:^\\B$)" 1999 0-0;0-0;0-0;0-0 2000 0-0;0-0;0-0;0-0 2001 "(?:^\\B$)$" 2002 0-0;0-0;0-0;0-0 2003 0-0;0-0;0-0;0-0 2004 strings 2005 "" 2006 "x" 2007 regexps 2008 "^\\B$" 2009 0-0;0-0;0-0;0-0 2010 -;-;-;- 2011 "^(?:^\\B$)$" 2012 0-0;0-0;0-0;0-0 2013 -;-;-;- 2014 "^(?:^\\B$)" 2015 0-0;0-0;0-0;0-0 2016 -;-;-;- 2017 "(?:^\\B$)$" 2018 0-0;0-0;0-0;0-0 2019 -;-;-;- 2020 strings 2021 "" 2022 "x" 2023 regexps 2024 "^\\B.$" 2025 -;-;-;- 2026 -;-;-;- 2027 "^(?:^\\B.$)$" 2028 -;-;-;- 2029 -;-;-;- 2030 "^(?:^\\B.$)" 2031 -;-;-;- 2032 -;-;-;- 2033 "(?:^\\B.$)$" 2034 -;-;-;- 2035 -;-;-;- 2036 strings 2037 "" 2038 "x" 2039 regexps 2040 "^\\B.\\B$" 2041 -;-;-;- 2042 -;-;-;- 2043 "^(?:^\\B.\\B$)$" 2044 -;-;-;- 2045 -;-;-;- 2046 "^(?:^\\B.\\B$)" 2047 -;-;-;- 2048 -;-;-;- 2049 "(?:^\\B.\\B$)$" 2050 -;-;-;- 2051 -;-;-;- 2052 strings 2053 "" 2054 "" 2055 regexps 2056 "^^^^^^^^\\B$$$$$$$" 2057 0-0;0-0;0-0;0-0 2058 0-0;0-0;0-0;0-0 2059 "^(?:^^^^^^^^\\B$$$$$$$)$" 2060 0-0;0-0;0-0;0-0 2061 0-0;0-0;0-0;0-0 2062 "^(?:^^^^^^^^\\B$$$$$$$)" 2063 0-0;0-0;0-0;0-0 2064 0-0;0-0;0-0;0-0 2065 "(?:^^^^^^^^\\B$$$$$$$)$" 2066 0-0;0-0;0-0;0-0 2067 0-0;0-0;0-0;0-0 2068 strings 2069 "" 2070 "x" 2071 regexps 2072 "^^^^^^^^\\B.$$$$$$" 2073 -;-;-;- 2074 -;-;-;- 2075 "^(?:^^^^^^^^\\B.$$$$$$)$" 2076 -;-;-;- 2077 -;-;-;- 2078 "^(?:^^^^^^^^\\B.$$$$$$)" 2079 -;-;-;- 2080 -;-;-;- 2081 "(?:^^^^^^^^\\B.$$$$$$)$" 2082 -;-;-;- 2083 -;-;-;- 2084 strings 2085 "" 2086 "x" 2087 regexps 2088 "^^^^^^^^\\B$$$$$$$" 2089 0-0;0-0;0-0;0-0 2090 -;-;-;- 2091 "^(?:^^^^^^^^\\B$$$$$$$)$" 2092 0-0;0-0;0-0;0-0 2093 -;-;-;- 2094 "^(?:^^^^^^^^\\B$$$$$$$)" 2095 0-0;0-0;0-0;0-0 2096 -;-;-;- 2097 "(?:^^^^^^^^\\B$$$$$$$)$" 2098 0-0;0-0;0-0;0-0 2099 -;-;-;- 2100 strings 2101 "" 2102 "x" 2103 regexps 2104 "\\bx\\b" 2105 -;-;-;- 2106 0-1;0-1;0-1;0-1 2107 "^(?:\\bx\\b)$" 2108 -;-;-;- 2109 0-1;0-1;0-1;0-1 2110 "^(?:\\bx\\b)" 2111 -;-;-;- 2112 0-1;0-1;0-1;0-1 2113 "(?:\\bx\\b)$" 2114 -;-;-;- 2115 0-1;0-1;0-1;0-1 2116 strings 2117 "" 2118 "x>" 2119 regexps 2120 "\\bx\\b" 2121 -;-;-;- 2122 -;0-1;-;0-1 2123 "^(?:\\bx\\b)$" 2124 -;-;-;- 2125 -;-;-;- 2126 "^(?:\\bx\\b)" 2127 -;-;-;- 2128 -;0-1;-;0-1 2129 "(?:\\bx\\b)$" 2130 -;-;-;- 2131 -;-;-;- 2132 strings 2133 "" 2134 "<x" 2135 regexps 2136 "\\bx\\b" 2137 -;-;-;- 2138 -;1-2;-;1-2 2139 "^(?:\\bx\\b)$" 2140 -;-;-;- 2141 -;-;-;- 2142 "^(?:\\bx\\b)" 2143 -;-;-;- 2144 -;-;-;- 2145 "(?:\\bx\\b)$" 2146 -;-;-;- 2147 -;1-2;-;1-2 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 -;-;-;- 2164 strings 2165 "" 2166 "ax" 2167 regexps 2168 "\\bx\\b" 2169 -;-;-;- 2170 -;-;-;- 2171 "^(?:\\bx\\b)$" 2172 -;-;-;- 2173 -;-;-;- 2174 "^(?:\\bx\\b)" 2175 -;-;-;- 2176 -;-;-;- 2177 "(?:\\bx\\b)$" 2178 -;-;-;- 2179 -;-;-;- 2180 strings 2181 "" 2182 "xb" 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 "axb" 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 "«x" 2215 regexps 2216 "\\bx\\b" 2217 -;-;-;- 2218 -;2-3;-;2-3 2219 "^(?:\\bx\\b)$" 2220 -;-;-;- 2221 -;-;-;- 2222 "^(?:\\bx\\b)" 2223 -;-;-;- 2224 -;-;-;- 2225 "(?:\\bx\\b)$" 2226 -;-;-;- 2227 -;2-3;-;2-3 2228 strings 2229 "" 2230 "x»" 2231 regexps 2232 "\\bx\\b" 2233 -;-;-;- 2234 -;0-1;-;0-1 2235 "^(?:\\bx\\b)$" 2236 -;-;-;- 2237 -;-;-;- 2238 "^(?:\\bx\\b)" 2239 -;-;-;- 2240 -;0-1;-;0-1 2241 "(?:\\bx\\b)$" 2242 -;-;-;- 2243 -;-;-;- 2244 strings 2245 "" 2246 "«x»" 2247 regexps 2248 "\\bx\\b" 2249 -;-;-;- 2250 -;2-3;-;2-3 2251 "^(?:\\bx\\b)$" 2252 -;-;-;- 2253 -;-;-;- 2254 "^(?:\\bx\\b)" 2255 -;-;-;- 2256 -;-;-;- 2257 "(?:\\bx\\b)$" 2258 -;-;-;- 2259 -;-;-;- 2260 strings 2261 "" 2262 "axb" 2263 regexps 2264 "\\bx\\b" 2265 -;-;-;- 2266 -;-;-;- 2267 "^(?:\\bx\\b)$" 2268 -;-;-;- 2269 -;-;-;- 2270 "^(?:\\bx\\b)" 2271 -;-;-;- 2272 -;-;-;- 2273 "(?:\\bx\\b)$" 2274 -;-;-;- 2275 -;-;-;- 2276 strings 2277 "" 2278 "áxβ" 2279 regexps 2280 "\\bx\\b" 2281 -;-;-;- 2282 -;2-3;-;2-3 2283 "^(?:\\bx\\b)$" 2284 -;-;-;- 2285 -;-;-;- 2286 "^(?:\\bx\\b)" 2287 -;-;-;- 2288 -;-;-;- 2289 "(?:\\bx\\b)$" 2290 -;-;-;- 2291 -;-;-;- 2292 strings 2293 "" 2294 "axb" 2295 regexps 2296 "\\Bx\\B" 2297 -;-;-;- 2298 -;1-2;-;1-2 2299 "^(?:\\Bx\\B)$" 2300 -;-;-;- 2301 -;-;-;- 2302 "^(?:\\Bx\\B)" 2303 -;-;-;- 2304 -;-;-;- 2305 "(?:\\Bx\\B)$" 2306 -;-;-;- 2307 -;-;-;- 2308 strings 2309 "" 2310 "áxβ" 2311 regexps 2312 "\\Bx\\B" 2313 -;-;-;- 2314 -;-;-;- 2315 "^(?:\\Bx\\B)$" 2316 -;-;-;- 2317 -;-;-;- 2318 "^(?:\\Bx\\B)" 2319 -;-;-;- 2320 -;-;-;- 2321 "(?:\\Bx\\B)$" 2322 -;-;-;- 2323 -;-;-;- 2324 strings 2325 "" 2326 "" 2327 regexps 2328 "^$^$" 2329 0-0;0-0;0-0;0-0 2330 0-0;0-0;0-0;0-0 2331 "^(?:^$^$)$" 2332 0-0;0-0;0-0;0-0 2333 0-0;0-0;0-0;0-0 2334 "^(?:^$^$)" 2335 0-0;0-0;0-0;0-0 2336 0-0;0-0;0-0;0-0 2337 "(?:^$^$)$" 2338 0-0;0-0;0-0;0-0 2339 0-0;0-0;0-0;0-0 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 "x" 2375 regexps 2376 "^$^$" 2377 0-0;0-0;0-0;0-0 2378 -;-;-;- 2379 "^(?:^$^$)$" 2380 0-0;0-0;0-0;0-0 2381 -;-;-;- 2382 "^(?:^$^$)" 2383 0-0;0-0;0-0;0-0 2384 -;-;-;- 2385 "(?:^$^$)$" 2386 0-0;0-0;0-0;0-0 2387 -;-;-;- 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\ny" 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\n\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 "foo$bar" 2519 regexps 2520 "^(foo\\$)$" 2521 -;-;-;- 2522 -;-;-;- 2523 "^(?:^(foo\\$)$)$" 2524 -;-;-;- 2525 -;-;-;- 2526 "^(?:^(foo\\$)$)" 2527 -;-;-;- 2528 -;-;-;- 2529 "(?:^(foo\\$)$)$" 2530 -;-;-;- 2531 -;-;-;- 2532 strings 2533 "" 2534 "foo$bar" 2535 regexps 2536 "(foo\\$)" 2537 -;-;-;- 2538 -;0-4 0-4;-;0-4 0-4 2539 "^(?:(foo\\$))$" 2540 -;-;-;- 2541 -;-;-;- 2542 "^(?:(foo\\$))" 2543 -;-;-;- 2544 -;0-4 0-4;-;0-4 0-4 2545 "(?:(foo\\$))$" 2546 -;-;-;- 2547 -;-;-;- 2548 strings 2549 "" 2550 "abc" 2551 regexps 2552 "^...$" 2553 -;-;-;- 2554 0-3;0-3;0-3;0-3 2555 "^(?:^...$)$" 2556 -;-;-;- 2557 0-3;0-3;0-3;0-3 2558 "^(?:^...$)" 2559 -;-;-;- 2560 0-3;0-3;0-3;0-3 2561 "(?:^...$)$" 2562 -;-;-;- 2563 0-3;0-3;0-3;0-3 2564 strings 2565 "" 2566 "本" 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-9;0-9;0-9;0-9 2587 "^(?:^...$)$" 2588 -;-;-;- 2589 0-9;0-9;0-9;0-9 2590 "^(?:^...$)" 2591 -;-;-;- 2592 0-9;0-9;0-9;0-9 2593 "(?:^...$)$" 2594 -;-;-;- 2595 0-9;0-9;0-9;0-9 2596 strings 2597 "" 2598 ".本." 2599 regexps 2600 "^...$" 2601 -;-;-;- 2602 0-5;0-5;0-5;0-5 2603 "^(?:^...$)$" 2604 -;-;-;- 2605 0-5;0-5;0-5;0-5 2606 "^(?:^...$)" 2607 -;-;-;- 2608 0-5;0-5;0-5;0-5 2609 "(?:^...$)$" 2610 -;-;-;- 2611 0-5;0-5;0-5;0-5 2612 strings 2613 "" 2614 "本" 2615 regexps 2616 "^\\C\\C\\C$" 2617 -;-;-;- 2618 0-3;0-3;0-3;0-3 2619 "^(?:^\\C\\C\\C$)$" 2620 -;-;-;- 2621 0-3;0-3;0-3;0-3 2622 "^(?:^\\C\\C\\C$)" 2623 -;-;-;- 2624 0-3;0-3;0-3;0-3 2625 "(?:^\\C\\C\\C$)$" 2626 -;-;-;- 2627 0-3;0-3;0-3;0-3 2628 strings 2629 "" 2630 "本" 2631 regexps 2632 "^\\C$" 2633 -;-;-;- 2634 -;-;-;- 2635 "^(?:^\\C$)$" 2636 -;-;-;- 2637 -;-;-;- 2638 "^(?:^\\C$)" 2639 -;-;-;- 2640 -;-;-;- 2641 "(?:^\\C$)$" 2642 -;-;-;- 2643 -;-;-;- 2644 strings 2645 "" 2646 "日本語" 2647 regexps 2648 "^\\C\\C\\C$" 2649 -;-;-;- 2650 -;-;-;- 2651 "^(?:^\\C\\C\\C$)$" 2652 -;-;-;- 2653 -;-;-;- 2654 "^(?:^\\C\\C\\C$)" 2655 -;-;-;- 2656 -;-;-;- 2657 "(?:^\\C\\C\\C$)$" 2658 -;-;-;- 2659 -;-;-;- 2660 strings 2661 "" 2662 "日本語" 2663 regexps 2664 "^...$" 2665 -;-;-;- 2666 0-9;0-9;0-9;0-9 2667 "^(?:^...$)$" 2668 -;-;-;- 2669 0-9;0-9;0-9;0-9 2670 "^(?:^...$)" 2671 -;-;-;- 2672 0-9;0-9;0-9;0-9 2673 "(?:^...$)$" 2674 -;-;-;- 2675 0-9;0-9;0-9;0-9 2676 strings 2677 "" 2678 "日本語" 2679 regexps 2680 "^.........$" 2681 -;-;-;- 2682 -;-;-;- 2683 "^(?:^.........$)$" 2684 -;-;-;- 2685 -;-;-;- 2686 "^(?:^.........$)" 2687 -;-;-;- 2688 -;-;-;- 2689 "(?:^.........$)$" 2690 -;-;-;- 2691 -;-;-;- 2692 strings 2693 "" 2694 ".本." 2695 regexps 2696 "^...$" 2697 -;-;-;- 2698 0-5;0-5;0-5;0-5 2699 "^(?:^...$)$" 2700 -;-;-;- 2701 0-5;0-5;0-5;0-5 2702 "^(?:^...$)" 2703 -;-;-;- 2704 0-5;0-5;0-5;0-5 2705 "(?:^...$)$" 2706 -;-;-;- 2707 0-5;0-5;0-5;0-5 2708 strings 2709 "" 2710 ".本." 2711 regexps 2712 "^.....$" 2713 -;-;-;- 2714 -;-;-;- 2715 "^(?:^.....$)$" 2716 -;-;-;- 2717 -;-;-;- 2718 "^(?:^.....$)" 2719 -;-;-;- 2720 -;-;-;- 2721 "(?:^.....$)$" 2722 -;-;-;- 2723 -;-;-;- 2724 strings 2725 "" 2726 "xfooo" 2727 regexps 2728 "\\B(fo|foo)\\B" 2729 -;-;-;- 2730 -;1-3 1-3;-;1-4 1-4 2731 "^(?:\\B(fo|foo)\\B)$" 2732 -;-;-;- 2733 -;-;-;- 2734 "^(?:\\B(fo|foo)\\B)" 2735 -;-;-;- 2736 -;-;-;- 2737 "(?:\\B(fo|foo)\\B)$" 2738 -;-;-;- 2739 -;-;-;- 2740 strings 2741 "" 2742 "foo" 2743 regexps 2744 "(fo|foo)" 2745 -;-;-;- 2746 0-3 0-3;0-2 0-2;0-3 0-3;0-3 0-3 2747 "^(?:(fo|foo))$" 2748 -;-;-;- 2749 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 2750 "^(?:(fo|foo))" 2751 -;-;-;- 2752 0-3 0-3;0-2 0-2;0-3 0-3;0-3 0-3 2753 "(?:(fo|foo))$" 2754 -;-;-;- 2755 0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 2756 strings 2757 "" 2758 "a" 2759 regexps 2760 "\\141" 2761 -;-;-;- 2762 0-1;0-1;0-1;0-1 2763 "^(?:\\141)$" 2764 -;-;-;- 2765 0-1;0-1;0-1;0-1 2766 "^(?:\\141)" 2767 -;-;-;- 2768 0-1;0-1;0-1;0-1 2769 "(?:\\141)$" 2770 -;-;-;- 2771 0-1;0-1;0-1;0-1 2772 strings 2773 "" 2774 "0" 2775 regexps 2776 "\\060" 2777 -;-;-;- 2778 0-1;0-1;0-1;0-1 2779 "^(?:\\060)$" 2780 -;-;-;- 2781 0-1;0-1;0-1;0-1 2782 "^(?:\\060)" 2783 -;-;-;- 2784 0-1;0-1;0-1;0-1 2785 "(?:\\060)$" 2786 -;-;-;- 2787 0-1;0-1;0-1;0-1 2788 strings 2789 "" 2790 "00" 2791 regexps 2792 "\\0600" 2793 -;-;-;- 2794 0-2;0-2;0-2;0-2 2795 "^(?:\\0600)$" 2796 -;-;-;- 2797 0-2;0-2;0-2;0-2 2798 "^(?:\\0600)" 2799 -;-;-;- 2800 0-2;0-2;0-2;0-2 2801 "(?:\\0600)$" 2802 -;-;-;- 2803 0-2;0-2;0-2;0-2 2804 strings 2805 "" 2806 "08" 2807 regexps 2808 "\\608" 2809 -;-;-;- 2810 0-2;0-2;0-2;0-2 2811 "^(?:\\608)$" 2812 -;-;-;- 2813 0-2;0-2;0-2;0-2 2814 "^(?:\\608)" 2815 -;-;-;- 2816 0-2;0-2;0-2;0-2 2817 "(?:\\608)$" 2818 -;-;-;- 2819 0-2;0-2;0-2;0-2 2820 strings 2821 "" 2822 "" 2823 regexps 2824 "\\01" 2825 -;-;-;- 2826 0-1;0-1;0-1;0-1 2827 "^(?:\\01)$" 2828 -;-;-;- 2829 0-1;0-1;0-1;0-1 2830 "^(?:\\01)" 2831 -;-;-;- 2832 0-1;0-1;0-1;0-1 2833 "(?:\\01)$" 2834 -;-;-;- 2835 0-1;0-1;0-1;0-1 2836 strings 2837 "" 2838 "8" 2839 regexps 2840 "\\018" 2841 -;-;-;- 2842 0-2;0-2;0-2;0-2 2843 "^(?:\\018)$" 2844 -;-;-;- 2845 0-2;0-2;0-2;0-2 2846 "^(?:\\018)" 2847 -;-;-;- 2848 0-2;0-2;0-2;0-2 2849 "(?:\\018)$" 2850 -;-;-;- 2851 0-2;0-2;0-2;0-2 2852 strings 2853 "" 2854 "a" 2855 regexps 2856 "\\x{61}" 2857 -;-;-;- 2858 0-1;0-1;0-1;0-1 2859 "^(?:\\x{61})$" 2860 -;-;-;- 2861 0-1;0-1;0-1;0-1 2862 "^(?:\\x{61})" 2863 -;-;-;- 2864 0-1;0-1;0-1;0-1 2865 "(?:\\x{61})$" 2866 -;-;-;- 2867 0-1;0-1;0-1;0-1 2868 strings 2869 "" 2870 "a" 2871 regexps 2872 "\\x61" 2873 -;-;-;- 2874 0-1;0-1;0-1;0-1 2875 "^(?:\\x61)$" 2876 -;-;-;- 2877 0-1;0-1;0-1;0-1 2878 "^(?:\\x61)" 2879 -;-;-;- 2880 0-1;0-1;0-1;0-1 2881 "(?:\\x61)$" 2882 -;-;-;- 2883 0-1;0-1;0-1;0-1 2884 strings 2885 "" 2886 "a" 2887 regexps 2888 "\\x{00000061}" 2889 -;-;-;- 2890 0-1;0-1;0-1;0-1 2891 "^(?:\\x{00000061})$" 2892 -;-;-;- 2893 0-1;0-1;0-1;0-1 2894 "^(?:\\x{00000061})" 2895 -;-;-;- 2896 0-1;0-1;0-1;0-1 2897 "(?:\\x{00000061})$" 2898 -;-;-;- 2899 0-1;0-1;0-1;0-1 2900 strings 2901 "" 2902 "aαβb" 2903 regexps 2904 "\\p{Greek}+" 2905 -;-;-;- 2906 -;1-5;-;1-5 2907 "^(?:\\p{Greek}+)$" 2908 -;-;-;- 2909 -;-;-;- 2910 "^(?:\\p{Greek}+)" 2911 -;-;-;- 2912 -;-;-;- 2913 "(?:\\p{Greek}+)$" 2914 -;-;-;- 2915 -;-;-;- 2916 strings 2917 "" 2918 "aαβb" 2919 regexps 2920 "\\P{Greek}+" 2921 -;-;-;- 2922 -;0-1;-;0-1 2923 "^(?:\\P{Greek}+)$" 2924 -;-;-;- 2925 -;-;-;- 2926 "^(?:\\P{Greek}+)" 2927 -;-;-;- 2928 -;0-1;-;0-1 2929 "(?:\\P{Greek}+)$" 2930 -;-;-;- 2931 -;5-6;-;5-6 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 -;1-5;-;1-5 2955 "^(?:\\P{^Greek}+)$" 2956 -;-;-;- 2957 -;-;-;- 2958 "^(?:\\P{^Greek}+)" 2959 -;-;-;- 2960 -;-;-;- 2961 "(?:\\P{^Greek}+)$" 2962 -;-;-;- 2963 -;-;-;- 2964 strings 2965 "" 2966 "abc123" 2967 regexps 2968 "[^0-9]+" 2969 -;-;-;- 2970 -;0-3;-;0-3 2971 "^(?:[^0-9]+)$" 2972 -;-;-;- 2973 -;-;-;- 2974 "^(?:[^0-9]+)" 2975 -;-;-;- 2976 -;0-3;-;0-3 2977 "(?:[^0-9]+)$" 2978 -;-;-;- 2979 -;-;-;- 2980 strings 2981 "" 2982 "abc123²³¼½¾₀₉" 2983 regexps 2984 "\\p{Nd}+" 2985 -;-;-;- 2986 -;3-6;-;3-6 2987 "^(?:\\p{Nd}+)$" 2988 -;-;-;- 2989 -;-;-;- 2990 "^(?:\\p{Nd}+)" 2991 -;-;-;- 2992 -;-;-;- 2993 "(?:\\p{Nd}+)$" 2994 -;-;-;- 2995 -;-;-;- 2996 strings 2997 "" 2998 "abc123²³¼½¾₀₉" 2999 regexps 3000 "\\p{^Nd}+" 3001 -;-;-;- 3002 -;0-3;-;0-3 3003 "^(?:\\p{^Nd}+)$" 3004 -;-;-;- 3005 -;-;-;- 3006 "^(?:\\p{^Nd}+)" 3007 -;-;-;- 3008 -;0-3;-;0-3 3009 "(?:\\p{^Nd}+)$" 3010 -;-;-;- 3011 -;6-22;-;6-22 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 -;3-6;-;3-6 3035 "^(?:\\P{^Nd}+)$" 3036 -;-;-;- 3037 -;-;-;- 3038 "^(?:\\P{^Nd}+)" 3039 -;-;-;- 3040 -;-;-;- 3041 "(?:\\P{^Nd}+)$" 3042 -;-;-;- 3043 -;-;-;- 3044 strings 3045 "" 3046 "abc123²³¼½¾₀₉" 3047 regexps 3048 "\\pN+" 3049 -;-;-;- 3050 -;3-22;-;3-22 3051 "^(?:\\pN+)$" 3052 -;-;-;- 3053 -;-;-;- 3054 "^(?:\\pN+)" 3055 -;-;-;- 3056 -;-;-;- 3057 "(?:\\pN+)$" 3058 -;-;-;- 3059 -;3-22;-;3-22 3060 strings 3061 "" 3062 "abc123²³¼½¾₀₉" 3063 regexps 3064 "\\p{N}+" 3065 -;-;-;- 3066 -;3-22;-;3-22 3067 "^(?:\\p{N}+)$" 3068 -;-;-;- 3069 -;-;-;- 3070 "^(?:\\p{N}+)" 3071 -;-;-;- 3072 -;-;-;- 3073 "(?:\\p{N}+)$" 3074 -;-;-;- 3075 -;3-22;-;3-22 3076 strings 3077 "" 3078 "abc123²³¼½¾₀₉" 3079 regexps 3080 "\\p{^N}+" 3081 -;-;-;- 3082 -;0-3;-;0-3 3083 "^(?:\\p{^N}+)$" 3084 -;-;-;- 3085 -;-;-;- 3086 "^(?:\\p{^N}+)" 3087 -;-;-;- 3088 -;0-3;-;0-3 3089 "(?:\\p{^N}+)$" 3090 -;-;-;- 3091 -;-;-;- 3092 strings 3093 "" 3094 "abc123" 3095 regexps 3096 "\\p{Any}+" 3097 -;-;-;- 3098 0-6;0-6;0-6;0-6 3099 "^(?:\\p{Any}+)$" 3100 -;-;-;- 3101 0-6;0-6;0-6;0-6 3102 "^(?:\\p{Any}+)" 3103 -;-;-;- 3104 0-6;0-6;0-6;0-6 3105 "(?:\\p{Any}+)$" 3106 -;-;-;- 3107 0-6;0-6;0-6;0-6 3108 strings 3109 "" 3110 "@AaB" 3111 regexps 3112 "(?i)[@-A]+" 3113 -;-;-;- 3114 -;0-3;-;0-3 3115 "^(?:(?i)[@-A]+)$" 3116 -;-;-;- 3117 -;-;-;- 3118 "^(?:(?i)[@-A]+)" 3119 -;-;-;- 3120 -;0-3;-;0-3 3121 "(?:(?i)[@-A]+)$" 3122 -;-;-;- 3123 -;-;-;- 3124 strings 3125 "" 3126 "aAzZ" 3127 regexps 3128 "(?i)[A-Z]+" 3129 -;-;-;- 3130 0-4;0-4;0-4;0-4 3131 "^(?:(?i)[A-Z]+)$" 3132 -;-;-;- 3133 0-4;0-4;0-4;0-4 3134 "^(?:(?i)[A-Z]+)" 3135 -;-;-;- 3136 0-4;0-4;0-4;0-4 3137 "(?:(?i)[A-Z]+)$" 3138 -;-;-;- 3139 0-4;0-4;0-4;0-4 3140 strings 3141 "" 3142 "Aa\\" 3143 regexps 3144 "(?i)[^\\\\]+" 3145 -;-;-;- 3146 -;0-2;-;0-2 3147 "^(?:(?i)[^\\\\]+)$" 3148 -;-;-;- 3149 -;-;-;- 3150 "^(?:(?i)[^\\\\]+)" 3151 -;-;-;- 3152 -;0-2;-;0-2 3153 "(?:(?i)[^\\\\]+)$" 3154 -;-;-;- 3155 -;-;-;- 3156 strings 3157 "" 3158 "acegikmoqsuwyACEGIKMOQSUWY" 3159 regexps 3160 "(?i)[acegikmoqsuwy]+" 3161 -;-;-;- 3162 0-26;0-26;0-26;0-26 3163 "^(?:(?i)[acegikmoqsuwy]+)$" 3164 -;-;-;- 3165 0-26;0-26;0-26;0-26 3166 "^(?:(?i)[acegikmoqsuwy]+)" 3167 -;-;-;- 3168 0-26;0-26;0-26;0-26 3169 "(?:(?i)[acegikmoqsuwy]+)$" 3170 -;-;-;- 3171 0-26;0-26;0-26;0-26 3172 strings 3173 "" 3174 "@AaB" 3175 regexps 3176 "[@-A]+" 3177 -;-;-;- 3178 -;0-2;-;0-2 3179 "^(?:[@-A]+)$" 3180 -;-;-;- 3181 -;-;-;- 3182 "^(?:[@-A]+)" 3183 -;-;-;- 3184 -;0-2;-;0-2 3185 "(?:[@-A]+)$" 3186 -;-;-;- 3187 -;-;-;- 3188 strings 3189 "" 3190 "aAzZ" 3191 regexps 3192 "[A-Z]+" 3193 -;-;-;- 3194 -;1-2;-;1-2 3195 "^(?:[A-Z]+)$" 3196 -;-;-;- 3197 -;-;-;- 3198 "^(?:[A-Z]+)" 3199 -;-;-;- 3200 -;-;-;- 3201 "(?:[A-Z]+)$" 3202 -;-;-;- 3203 -;3-4;-;3-4 3204 strings 3205 "" 3206 "Aa\\" 3207 regexps 3208 "[^\\\\]+" 3209 -;-;-;- 3210 -;0-2;-;0-2 3211 "^(?:[^\\\\]+)$" 3212 -;-;-;- 3213 -;-;-;- 3214 "^(?:[^\\\\]+)" 3215 -;-;-;- 3216 -;0-2;-;0-2 3217 "(?:[^\\\\]+)$" 3218 -;-;-;- 3219 -;-;-;- 3220 strings 3221 "" 3222 "acegikmoqsuwyACEGIKMOQSUWY" 3223 regexps 3224 "[acegikmoqsuwy]+" 3225 -;-;-;- 3226 -;0-13;-;0-13 3227 "^(?:[acegikmoqsuwy]+)$" 3228 -;-;-;- 3229 -;-;-;- 3230 "^(?:[acegikmoqsuwy]+)" 3231 -;-;-;- 3232 -;0-13;-;0-13 3233 "(?:[acegikmoqsuwy]+)$" 3234 -;-;-;- 3235 -;-;-;- 3236 strings 3237 "" 3238 "abcdef" 3239 regexps 3240 "^abc" 3241 -;-;-;- 3242 -;0-3;-;0-3 3243 "^(?:^abc)$" 3244 -;-;-;- 3245 -;-;-;- 3246 "^(?:^abc)" 3247 -;-;-;- 3248 -;0-3;-;0-3 3249 "(?:^abc)$" 3250 -;-;-;- 3251 -;-;-;- 3252 strings 3253 "" 3254 "aabcdef" 3255 regexps 3256 "^abc" 3257 -;-;-;- 3258 -;-;-;- 3259 "^(?:^abc)$" 3260 -;-;-;- 3261 -;-;-;- 3262 "^(?:^abc)" 3263 -;-;-;- 3264 -;-;-;- 3265 "(?:^abc)$" 3266 -;-;-;- 3267 -;-;-;- 3268 strings 3269 "" 3270 "abcdef" 3271 regexps 3272 "^[ay]*[bx]+c" 3273 -;-;-;- 3274 -;0-3;-;0-3 3275 "^(?:^[ay]*[bx]+c)$" 3276 -;-;-;- 3277 -;-;-;- 3278 "^(?:^[ay]*[bx]+c)" 3279 -;-;-;- 3280 -;0-3;-;0-3 3281 "(?:^[ay]*[bx]+c)$" 3282 -;-;-;- 3283 -;-;-;- 3284 strings 3285 "" 3286 "aabcdef" 3287 regexps 3288 "^[ay]*[bx]+c" 3289 -;-;-;- 3290 -;0-4;-;0-4 3291 "^(?:^[ay]*[bx]+c)$" 3292 -;-;-;- 3293 -;-;-;- 3294 "^(?:^[ay]*[bx]+c)" 3295 -;-;-;- 3296 -;0-4;-;0-4 3297 "(?:^[ay]*[bx]+c)$" 3298 -;-;-;- 3299 -;-;-;- 3300 strings 3301 "" 3302 "abcdef" 3303 regexps 3304 "def$" 3305 -;-;-;- 3306 -;3-6;-;3-6 3307 "^(?:def$)$" 3308 -;-;-;- 3309 -;-;-;- 3310 "^(?:def$)" 3311 -;-;-;- 3312 -;-;-;- 3313 "(?:def$)$" 3314 -;-;-;- 3315 -;3-6;-;3-6 3316 strings 3317 "" 3318 "abcdeff" 3319 regexps 3320 "def$" 3321 -;-;-;- 3322 -;-;-;- 3323 "^(?:def$)$" 3324 -;-;-;- 3325 -;-;-;- 3326 "^(?:def$)" 3327 -;-;-;- 3328 -;-;-;- 3329 "(?:def$)$" 3330 -;-;-;- 3331 -;-;-;- 3332 strings 3333 "" 3334 "abcdef" 3335 regexps 3336 "d[ex][fy]$" 3337 -;-;-;- 3338 -;3-6;-;3-6 3339 "^(?:d[ex][fy]$)$" 3340 -;-;-;- 3341 -;-;-;- 3342 "^(?:d[ex][fy]$)" 3343 -;-;-;- 3344 -;-;-;- 3345 "(?:d[ex][fy]$)$" 3346 -;-;-;- 3347 -;3-6;-;3-6 3348 strings 3349 "" 3350 "abcdeff" 3351 regexps 3352 "d[ex][fy]$" 3353 -;-;-;- 3354 -;-;-;- 3355 "^(?:d[ex][fy]$)$" 3356 -;-;-;- 3357 -;-;-;- 3358 "^(?:d[ex][fy]$)" 3359 -;-;-;- 3360 -;-;-;- 3361 "(?:d[ex][fy]$)$" 3362 -;-;-;- 3363 -;-;-;- 3364 strings 3365 "" 3366 "abcdef" 3367 regexps 3368 "[dz][ex][fy]$" 3369 -;-;-;- 3370 -;3-6;-;3-6 3371 "^(?:[dz][ex][fy]$)$" 3372 -;-;-;- 3373 -;-;-;- 3374 "^(?:[dz][ex][fy]$)" 3375 -;-;-;- 3376 -;-;-;- 3377 "(?:[dz][ex][fy]$)$" 3378 -;-;-;- 3379 -;3-6;-;3-6 3380 strings 3381 "" 3382 "abcdeff" 3383 regexps 3384 "[dz][ex][fy]$" 3385 -;-;-;- 3386 -;-;-;- 3387 "^(?:[dz][ex][fy]$)$" 3388 -;-;-;- 3389 -;-;-;- 3390 "^(?:[dz][ex][fy]$)" 3391 -;-;-;- 3392 -;-;-;- 3393 "(?:[dz][ex][fy]$)$" 3394 -;-;-;- 3395 -;-;-;- 3396 strings 3397 "" 3398 "abcdef" 3399 regexps 3400 "(?m)^abc" 3401 -;-;-;- 3402 -;0-3;-;0-3 3403 "^(?:(?m)^abc)$" 3404 -;-;-;- 3405 -;-;-;- 3406 "^(?:(?m)^abc)" 3407 -;-;-;- 3408 -;0-3;-;0-3 3409 "(?:(?m)^abc)$" 3410 -;-;-;- 3411 -;-;-;- 3412 strings 3413 "" 3414 "aabcdef" 3415 regexps 3416 "(?m)^abc" 3417 -;-;-;- 3418 -;-;-;- 3419 "^(?:(?m)^abc)$" 3420 -;-;-;- 3421 -;-;-;- 3422 "^(?:(?m)^abc)" 3423 -;-;-;- 3424 -;-;-;- 3425 "(?:(?m)^abc)$" 3426 -;-;-;- 3427 -;-;-;- 3428 strings 3429 "" 3430 "abcdef" 3431 regexps 3432 "(?m)^[ay]*[bx]+c" 3433 -;-;-;- 3434 -;0-3;-;0-3 3435 "^(?:(?m)^[ay]*[bx]+c)$" 3436 -;-;-;- 3437 -;-;-;- 3438 "^(?:(?m)^[ay]*[bx]+c)" 3439 -;-;-;- 3440 -;0-3;-;0-3 3441 "(?:(?m)^[ay]*[bx]+c)$" 3442 -;-;-;- 3443 -;-;-;- 3444 strings 3445 "" 3446 "aabcdef" 3447 regexps 3448 "(?m)^[ay]*[bx]+c" 3449 -;-;-;- 3450 -;0-4;-;0-4 3451 "^(?:(?m)^[ay]*[bx]+c)$" 3452 -;-;-;- 3453 -;-;-;- 3454 "^(?:(?m)^[ay]*[bx]+c)" 3455 -;-;-;- 3456 -;0-4;-;0-4 3457 "(?:(?m)^[ay]*[bx]+c)$" 3458 -;-;-;- 3459 -;-;-;- 3460 strings 3461 "" 3462 "abcdef" 3463 regexps 3464 "(?m)def$" 3465 -;-;-;- 3466 -;3-6;-;3-6 3467 "^(?:(?m)def$)$" 3468 -;-;-;- 3469 -;-;-;- 3470 "^(?:(?m)def$)" 3471 -;-;-;- 3472 -;-;-;- 3473 "(?:(?m)def$)$" 3474 -;-;-;- 3475 -;3-6;-;3-6 3476 strings 3477 "" 3478 "abcdeff" 3479 regexps 3480 "(?m)def$" 3481 -;-;-;- 3482 -;-;-;- 3483 "^(?:(?m)def$)$" 3484 -;-;-;- 3485 -;-;-;- 3486 "^(?:(?m)def$)" 3487 -;-;-;- 3488 -;-;-;- 3489 "(?:(?m)def$)$" 3490 -;-;-;- 3491 -;-;-;- 3492 strings 3493 "" 3494 "abcdef" 3495 regexps 3496 "(?m)d[ex][fy]$" 3497 -;-;-;- 3498 -;3-6;-;3-6 3499 "^(?:(?m)d[ex][fy]$)$" 3500 -;-;-;- 3501 -;-;-;- 3502 "^(?:(?m)d[ex][fy]$)" 3503 -;-;-;- 3504 -;-;-;- 3505 "(?:(?m)d[ex][fy]$)$" 3506 -;-;-;- 3507 -;3-6;-;3-6 3508 strings 3509 "" 3510 "abcdeff" 3511 regexps 3512 "(?m)d[ex][fy]$" 3513 -;-;-;- 3514 -;-;-;- 3515 "^(?:(?m)d[ex][fy]$)$" 3516 -;-;-;- 3517 -;-;-;- 3518 "^(?:(?m)d[ex][fy]$)" 3519 -;-;-;- 3520 -;-;-;- 3521 "(?:(?m)d[ex][fy]$)$" 3522 -;-;-;- 3523 -;-;-;- 3524 strings 3525 "" 3526 "abcdef" 3527 regexps 3528 "(?m)[dz][ex][fy]$" 3529 -;-;-;- 3530 -;3-6;-;3-6 3531 "^(?:(?m)[dz][ex][fy]$)$" 3532 -;-;-;- 3533 -;-;-;- 3534 "^(?:(?m)[dz][ex][fy]$)" 3535 -;-;-;- 3536 -;-;-;- 3537 "(?:(?m)[dz][ex][fy]$)$" 3538 -;-;-;- 3539 -;3-6;-;3-6 3540 strings 3541 "" 3542 "abcdeff" 3543 regexps 3544 "(?m)[dz][ex][fy]$" 3545 -;-;-;- 3546 -;-;-;- 3547 "^(?:(?m)[dz][ex][fy]$)$" 3548 -;-;-;- 3549 -;-;-;- 3550 "^(?:(?m)[dz][ex][fy]$)" 3551 -;-;-;- 3552 -;-;-;- 3553 "(?:(?m)[dz][ex][fy]$)$" 3554 -;-;-;- 3555 -;-;-;- 3556 strings 3557 "" 3558 "a" 3559 regexps 3560 "^" 3561 0-0;0-0;0-0;0-0 3562 -;0-0;-;0-0 3563 "^(?:^)$" 3564 0-0;0-0;0-0;0-0 3565 -;-;-;- 3566 "^(?:^)" 3567 0-0;0-0;0-0;0-0 3568 -;0-0;-;0-0 3569 "(?:^)$" 3570 0-0;0-0;0-0;0-0 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 "a" 3593 -;-;-;- 3594 0-1;0-1;0-1;0-1 3595 "^(?:a)$" 3596 -;-;-;- 3597 0-1;0-1;0-1;0-1 3598 "^(?:a)" 3599 -;-;-;- 3600 0-1;0-1;0-1;0-1 3601 "(?:a)$" 3602 -;-;-;- 3603 0-1;0-1;0-1;0-1 3604 strings 3605 "" 3606 "a" 3607 regexps 3608 "ab*" 3609 -;-;-;- 3610 0-1;0-1;0-1;0-1 3611 "^(?:ab*)$" 3612 -;-;-;- 3613 0-1;0-1;0-1;0-1 3614 "^(?:ab*)" 3615 -;-;-;- 3616 0-1;0-1;0-1;0-1 3617 "(?:ab*)$" 3618 -;-;-;- 3619 0-1;0-1;0-1;0-1 3620 strings 3621 "" 3622 "a" 3623 regexps 3624 "a\\C*" 3625 -;-;-;- 3626 0-1;0-1;0-1;0-1 3627 "^(?:a\\C*)$" 3628 -;-;-;- 3629 0-1;0-1;0-1;0-1 3630 "^(?:a\\C*)" 3631 -;-;-;- 3632 0-1;0-1;0-1;0-1 3633 "(?:a\\C*)$" 3634 -;-;-;- 3635 0-1;0-1;0-1;0-1 3636 strings 3637 "" 3638 "a" 3639 regexps 3640 "a\\C+" 3641 -;-;-;- 3642 -;-;-;- 3643 "^(?:a\\C+)$" 3644 -;-;-;- 3645 -;-;-;- 3646 "^(?:a\\C+)" 3647 -;-;-;- 3648 -;-;-;- 3649 "(?:a\\C+)$" 3650 -;-;-;- 3651 -;-;-;- 3652 strings 3653 "" 3654 "a" 3655 regexps 3656 "a\\C?" 3657 -;-;-;- 3658 0-1;0-1;0-1;0-1 3659 "^(?:a\\C?)$" 3660 -;-;-;- 3661 0-1;0-1;0-1;0-1 3662 "^(?:a\\C?)" 3663 -;-;-;- 3664 0-1;0-1;0-1;0-1 3665 "(?:a\\C?)$" 3666 -;-;-;- 3667 0-1;0-1;0-1;0-1 3668 strings 3669 "" 3670 "a" 3671 regexps 3672 "a\\C*?" 3673 -;-;-;- 3674 0-1;0-1;0-1;0-1 3675 "^(?:a\\C*?)$" 3676 -;-;-;- 3677 0-1;0-1;0-1;0-1 3678 "^(?:a\\C*?)" 3679 -;-;-;- 3680 0-1;0-1;0-1;0-1 3681 "(?:a\\C*?)$" 3682 -;-;-;- 3683 0-1;0-1;0-1;0-1 3684 strings 3685 "" 3686 "a" 3687 regexps 3688 "a\\C+?" 3689 -;-;-;- 3690 -;-;-;- 3691 "^(?:a\\C+?)$" 3692 -;-;-;- 3693 -;-;-;- 3694 "^(?:a\\C+?)" 3695 -;-;-;- 3696 -;-;-;- 3697 "(?:a\\C+?)$" 3698 -;-;-;- 3699 -;-;-;- 3700 strings 3701 "" 3702 "a" 3703 regexps 3704 "a\\C??" 3705 -;-;-;- 3706 0-1;0-1;0-1;0-1 3707 "^(?:a\\C??)$" 3708 -;-;-;- 3709 0-1;0-1;0-1;0-1 3710 "^(?:a\\C??)" 3711 -;-;-;- 3712 0-1;0-1;0-1;0-1 3713 "(?:a\\C??)$" 3714 -;-;-;- 3715 0-1;0-1;0-1;0-1 3716 strings 3717 "" 3718 "baba" 3719 regexps 3720 "a\\C*|ba\\C" 3721 -;-;-;- 3722 -;0-3;-;0-3 3723 "^(?:a\\C*|ba\\C)$" 3724 -;-;-;- 3725 -;-;-;- 3726 "^(?:a\\C*|ba\\C)" 3727 -;-;-;- 3728 -;0-3;-;0-3 3729 "(?:a\\C*|ba\\C)$" 3730 -;-;-;- 3731 -;1-4;-;1-4 3732 strings 3733 "" 3734 "Inc." 3735 regexps 3736 "\\w*I\\w*" 3737 -;-;-;- 3738 -;0-3;-;0-3 3739 "^(?:\\w*I\\w*)$" 3740 -;-;-;- 3741 -;-;-;- 3742 "^(?:\\w*I\\w*)" 3743 -;-;-;- 3744 -;0-3;-;0-3 3745 "(?:\\w*I\\w*)$" 3746 -;-;-;- 3747 -;-;-;- 3748 strings 3749 "" 3750 "aaa" 3751 regexps 3752 "(?:|a)*" 3753 0-0;0-0;0-0;0-0 3754 0-3;0-0;0-3;0-3 3755 "^(?:(?:|a)*)$" 3756 0-0;0-0;0-0;0-0 3757 0-3;0-3;0-3;0-3 3758 "^(?:(?:|a)*)" 3759 0-0;0-0;0-0;0-0 3760 0-3;0-0;0-3;0-3 3761 "(?:(?:|a)*)$" 3762 0-0;0-0;0-0;0-0 3763 0-3;0-3;0-3;0-3 3764 strings 3765 "" 3766 "aaa" 3767 regexps 3768 "(?:|a)+" 3769 0-0;0-0;0-0;0-0 3770 0-3;0-0;0-3;0-3 3771 "^(?:(?:|a)+)$" 3772 0-0;0-0;0-0;0-0 3773 0-3;0-3;0-3;0-3 3774 "^(?:(?:|a)+)" 3775 0-0;0-0;0-0;0-0 3776 0-3;0-0;0-3;0-3 3777 "(?:(?:|a)+)$" 3778 0-0;0-0;0-0;0-0 3779 0-3;0-3;0-3;0-3