Parent Directory
|
Revision Log
|
Patch
| revision 169 by ph10, Mon Jun 4 10:49:21 2007 UTC | revision 758 by ph10, Mon Nov 21 12:05:36 2011 UTC | |
|---|---|---|
| # | Line 1 | Line 1 |
| 1 | /-- This set of tests is not Perl-compatible. It checks on special features | |
| 2 | of PCRE's API, error diagnostics, and the compiled code of some patterns. | |
| 3 | It also checks the non-Perl syntax the PCRE supports (Python, .NET, | |
| 4 | Oniguruma). Finally, there are some tests where PCRE and Perl differ, | |
| 5 | either because PCRE can't be compatible, or there is a possible Perl | |
| 6 | bug. --/ | |
| 7 | ||
| 8 | /-- Originally, the Perl >= 5.10 things were in here too, but now I have | |
| 9 | separated many (most?) of them out into test 11. However, there may still | |
| 10 | be some that were overlooked. --/ | |
| 11 | ||
| 12 | /(a)b|/I | /(a)b|/I |
| 13 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| 14 | No options | No options |
| # | Line 40 No match | Line 51 No match |
| 51 | ||
| 52 | /a+bc/I | /a+bc/I |
| 53 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 54 | No options | No options |
| 55 | First char = 'a' | First char = 'a' |
| 56 | Need char = 'c' | Need char = 'c' |
| 57 | ||
| 58 | /a*bc/I | /a*bc/I |
| 59 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 60 | No options | No options |
| 61 | No first char | No first char |
| 62 | Need char = 'c' | Need char = 'c' |
| 63 | ||
| 64 | /a{3}bc/I | /a{3}bc/I |
| 65 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 66 | No options | No options |
| 67 | First char = 'a' | First char = 'a' |
| 68 | Need char = 'c' | Need char = 'c' |
| 69 | ||
| 70 | /(abc|a+z)/I | /(abc|a+z)/I |
| 71 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 72 | No options | No options |
| 73 | First char = 'a' | First char = 'a' |
| 74 | No need char | No need char |
| # | Line 78 No match | Line 85 No match |
| 85 | def\nabc | def\nabc |
| 86 | No match | No match |
| 87 | ||
| 88 | /ab\hdef/X | /ab\idef/X |
| 89 | Failed: unrecognized character follows \ at offset 3 | Failed: unrecognized character follows \ at offset 3 |
| 90 | ||
| 91 | /(?X)ab\hdef/X | /(?X)ab\idef/X |
| 92 | Failed: unrecognized character follows \ at offset 7 | Failed: unrecognized character follows \ at offset 7 |
| 93 | ||
| 94 | /x{5,4}/ | /x{5,4}/ |
| # | Line 96 Failed: missing terminating ] for charac | Line 103 Failed: missing terminating ] for charac |
| 103 | /(?X)[\B]/ | /(?X)[\B]/ |
| 104 | Failed: invalid escape sequence in character class at offset 6 | Failed: invalid escape sequence in character class at offset 6 |
| 105 | ||
| 106 | /(?X)[\R]/ | |
| 107 | Failed: invalid escape sequence in character class at offset 6 | |
| 108 | ||
| 109 | /(?X)[\X]/ | |
| 110 | Failed: invalid escape sequence in character class at offset 6 | |
| 111 | ||
| 112 | /[\B]/BZ | |
| 113 | ------------------------------------------------------------------ | |
| 114 | Bra | |
| 115 | B | |
| 116 | Ket | |
| 117 | End | |
| 118 | ------------------------------------------------------------------ | |
| 119 | ||
| 120 | /[\R]/BZ | |
| 121 | ------------------------------------------------------------------ | |
| 122 | Bra | |
| 123 | R | |
| 124 | Ket | |
| 125 | End | |
| 126 | ------------------------------------------------------------------ | |
| 127 | ||
| 128 | /[\X]/BZ | |
| 129 | ------------------------------------------------------------------ | |
| 130 | Bra | |
| 131 | X | |
| 132 | Ket | |
| 133 | End | |
| 134 | ------------------------------------------------------------------ | |
| 135 | ||
| 136 | /[z-a]/ | /[z-a]/ |
| 137 | Failed: range out of order in character class at offset 3 | Failed: range out of order in character class at offset 3 |
| 138 | ||
| # | Line 109 Failed: missing ) at offset 4 | Line 146 Failed: missing ) at offset 4 |
| 146 | Failed: missing ) after comment at offset 7 | Failed: missing ) after comment at offset 7 |
| 147 | ||
| 148 | /(?z)abc/ | /(?z)abc/ |
| 149 | Failed: unrecognized character after (? at offset 2 | Failed: unrecognized character after (? or (?- at offset 2 |
| 150 | ||
| 151 | /.*b/I | /.*b/I |
| 152 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 153 | No options | No options |
| 154 | First char at start or follows newline | First char at start or follows newline |
| 155 | Need char = 'b' | Need char = 'b' |
| 156 | ||
| 157 | /.*?b/I | /.*?b/I |
| 158 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 159 | No options | No options |
| 160 | First char at start or follows newline | First char at start or follows newline |
| 161 | Need char = 'b' | Need char = 'b' |
| # | Line 140 Capturing subpattern count = 0 | Line 175 Capturing subpattern count = 0 |
| 175 | No options | No options |
| 176 | No first char | No first char |
| 177 | No need char | No need char |
| 178 | Subject length lower bound = 3 | |
| 179 | Starting byte set: c d e | Starting byte set: c d e |
| 180 | this sentence eventually mentions a cat | this sentence eventually mentions a cat |
| 181 | 0: cat | 0: cat |
| # | Line 151 Capturing subpattern count = 0 | Line 187 Capturing subpattern count = 0 |
| 187 | Options: caseless | Options: caseless |
| 188 | No first char | No first char |
| 189 | No need char | No need char |
| 190 | Subject length lower bound = 3 | |
| 191 | Starting byte set: C D E c d e | Starting byte set: C D E c d e |
| 192 | this sentence eventually mentions a CAT cat | this sentence eventually mentions a CAT cat |
| 193 | 0: CAT | 0: CAT |
| # | Line 162 Capturing subpattern count = 0 | Line 199 Capturing subpattern count = 0 |
| 199 | No options | No options |
| 200 | No first char | No first char |
| 201 | No need char | No need char |
| 202 | Subject length lower bound = 1 | |
| 203 | Starting byte set: a b c d | Starting byte set: a b c d |
| 204 | ||
| 205 | /(a|[^\dZ])/IS | /(a|[^\dZ])/IS |
| # | Line 169 Capturing subpattern count = 1 | Line 207 Capturing subpattern count = 1 |
| 207 | No options | No options |
| 208 | No first char | No first char |
| 209 | No need char | No need char |
| 210 | Subject length lower bound = 1 | |
| 211 | Starting byte set: \x00 \x01 \x02 \x03 \x04 \x05 \x06 \x07 \x08 \x09 \x0a | Starting byte set: \x00 \x01 \x02 \x03 \x04 \x05 \x06 \x07 \x08 \x09 \x0a |
| 212 | \x0b \x0c \x0d \x0e \x0f \x10 \x11 \x12 \x13 \x14 \x15 \x16 \x17 \x18 \x19 | \x0b \x0c \x0d \x0e \x0f \x10 \x11 \x12 \x13 \x14 \x15 \x16 \x17 \x18 \x19 |
| 213 | \x1a \x1b \x1c \x1d \x1e \x1f \x20 ! " # $ % & ' ( ) * + , - . / : ; < = > | \x1a \x1b \x1c \x1d \x1e \x1f \x20 ! " # $ % & ' ( ) * + , - . / : ; < = > |
| # | Line 189 Capturing subpattern count = 1 | Line 228 Capturing subpattern count = 1 |
| 228 | No options | No options |
| 229 | No first char | No first char |
| 230 | No need char | No need char |
| 231 | Subject length lower bound = 1 | |
| 232 | Starting byte set: \x09 \x0a \x0c \x0d \x20 a b | Starting byte set: \x09 \x0a \x0c \x0d \x20 a b |
| 233 | ||
| 234 | /(ab\2)/ | /(ab\2)/ |
| # | Line 310 No match | Line 350 No match |
| 350 | No match | No match |
| 351 | ||
| 352 | /ab(?z)cd/ | /ab(?z)cd/ |
| 353 | Failed: unrecognized character after (? at offset 4 | Failed: unrecognized character after (? or (?- at offset 4 |
| 354 | ||
| 355 | /^abc|def/I | /^abc|def/I |
| 356 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| # | Line 324 No need char | Line 364 No need char |
| 364 | ||
| 365 | /.*((abc)$|(def))/I | /.*((abc)$|(def))/I |
| 366 | Capturing subpattern count = 3 | Capturing subpattern count = 3 |
| Partial matching not supported | ||
| 367 | No options | No options |
| 368 | First char at start or follows newline | First char at start or follows newline |
| 369 | No need char | No need char |
| # | Line 338 No need char | Line 377 No need char |
| 377 | 2: <unset> | 2: <unset> |
| 378 | 3: def | 3: def |
| 379 | ||
| 380 | /abc/IP | /abc/P |
| 381 | abc | abc |
| 382 | 0: abc | 0: abc |
| 383 | *** Failers | *** Failers |
| 384 | No match: POSIX code 17: match failed | No match: POSIX code 17: match failed |
| 385 | ||
| 386 | /^abc|def/IP | /^abc|def/P |
| 387 | abcdef | abcdef |
| 388 | 0: abc | 0: abc |
| 389 | abcdef\B | abcdef\B |
| 390 | 0: def | 0: def |
| 391 | ||
| 392 | /.*((abc)$|(def))/IP | /.*((abc)$|(def))/P |
| 393 | defabc | defabc |
| 394 | 0: defabc | 0: defabc |
| 395 | 1: abc | 1: abc |
| # | Line 360 No match: POSIX code 17: match failed | Line 399 No match: POSIX code 17: match failed |
| 399 | 1: def | 1: def |
| 400 | 3: def | 3: def |
| 401 | ||
| 402 | /the quick brown fox/IP | /the quick brown fox/P |
| 403 | the quick brown fox | the quick brown fox |
| 404 | 0: the quick brown fox | 0: the quick brown fox |
| 405 | *** Failers | *** Failers |
| # | Line 368 No match: POSIX code 17: match failed | Line 407 No match: POSIX code 17: match failed |
| 407 | The Quick Brown Fox | The Quick Brown Fox |
| 408 | No match: POSIX code 17: match failed | No match: POSIX code 17: match failed |
| 409 | ||
| 410 | /the quick brown fox/IPi | /the quick brown fox/Pi |
| 411 | the quick brown fox | the quick brown fox |
| 412 | 0: the quick brown fox | 0: the quick brown fox |
| 413 | The Quick Brown Fox | The Quick Brown Fox |
| 414 | 0: The Quick Brown Fox | 0: The Quick Brown Fox |
| 415 | ||
| 416 | /abc.def/IP | /abc.def/P |
| 417 | *** Failers | *** Failers |
| 418 | No match: POSIX code 17: match failed | No match: POSIX code 17: match failed |
| 419 | abc\ndef | abc\ndef |
| 420 | No match: POSIX code 17: match failed | No match: POSIX code 17: match failed |
| 421 | ||
| 422 | /abc$/IP | /abc$/P |
| 423 | abc | abc |
| 424 | 0: abc | 0: abc |
| 425 | abc\n | abc\n |
| 426 | 0: abc | 0: abc |
| 427 | ||
| 428 | /(abc)\2/IP | /(abc)\2/P |
| 429 | Failed: POSIX code 15: bad back reference at offset 7 | Failed: POSIX code 15: bad back reference at offset 7 |
| 430 | ||
| 431 | /(abc\1)/IP | /(abc\1)/P |
| 432 | abc | abc |
| 433 | No match: POSIX code 17: match failed | No match: POSIX code 17: match failed |
| 434 | ||
| # | Line 401 Failed: missing terminating ] for charac | Line 440 Failed: missing terminating ] for charac |
| 440 | ||
| 441 | /[^aeiou ]{3,}/I | /[^aeiou ]{3,}/I |
| 442 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 443 | No options | No options |
| 444 | No first char | No first char |
| 445 | No need char | No need char |
| # | Line 410 No need char | Line 448 No need char |
| 448 | ||
| 449 | /<.*>/I | /<.*>/I |
| 450 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 451 | No options | No options |
| 452 | First char = '<' | First char = '<' |
| 453 | Need char = '>' | Need char = '>' |
| # | Line 419 Need char = '>' | Line 456 Need char = '>' |
| 456 | ||
| 457 | /<.*?>/I | /<.*?>/I |
| 458 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 459 | No options | No options |
| 460 | First char = '<' | First char = '<' |
| 461 | Need char = '>' | Need char = '>' |
| # | Line 428 Need char = '>' | Line 464 Need char = '>' |
| 464 | ||
| 465 | /<.*>/IU | /<.*>/IU |
| 466 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 467 | Options: ungreedy | Options: ungreedy |
| 468 | First char = '<' | First char = '<' |
| 469 | Need char = '>' | Need char = '>' |
| # | Line 437 Need char = '>' | Line 472 Need char = '>' |
| 472 | ||
| 473 | /(?U)<.*>/I | /(?U)<.*>/I |
| 474 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 475 | Options: ungreedy | Options: ungreedy |
| 476 | First char = '<' | First char = '<' |
| 477 | Need char = '>' | Need char = '>' |
| # | Line 446 Need char = '>' | Line 480 Need char = '>' |
| 480 | ||
| 481 | /<.*?>/IU | /<.*?>/IU |
| 482 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 483 | Options: ungreedy | Options: ungreedy |
| 484 | First char = '<' | First char = '<' |
| 485 | Need char = '>' | Need char = '>' |
| # | Line 455 Need char = '>' | Line 488 Need char = '>' |
| 488 | ||
| 489 | /={3,}/IU | /={3,}/IU |
| 490 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 491 | Options: ungreedy | Options: ungreedy |
| 492 | First char = '=' | First char = '=' |
| 493 | Need char = '=' | Need char = '=' |
| # | Line 464 Need char = '=' | Line 496 Need char = '=' |
| 496 | ||
| 497 | /(?U)={3,}?/I | /(?U)={3,}?/I |
| 498 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 499 | Options: ungreedy | Options: ungreedy |
| 500 | First char = '=' | First char = '=' |
| 501 | Need char = '=' | Need char = '=' |
| # | Line 522 No need char | Line 553 No need char |
| 553 | ||
| 554 | /(?s).*/I | /(?s).*/I |
| 555 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 556 | Options: anchored dotall | Options: anchored dotall |
| 557 | No first char | No first char |
| 558 | No need char | No need char |
| # | Line 532 Capturing subpattern count = 0 | Line 562 Capturing subpattern count = 0 |
| 562 | No options | No options |
| 563 | No first char | No first char |
| 564 | No need char | No need char |
| 565 | Subject length lower bound = 1 | |
| 566 | Starting byte set: a b c d | Starting byte set: a b c d |
| 567 | ||
| 568 | /(?i)[abcd]/IS | /(?i)[abcd]/IS |
| # | Line 539 Capturing subpattern count = 0 | Line 570 Capturing subpattern count = 0 |
| 570 | Options: caseless | Options: caseless |
| 571 | No first char | No first char |
| 572 | No need char | No need char |
| 573 | Subject length lower bound = 1 | |
| 574 | Starting byte set: A B C D a b c d | Starting byte set: A B C D a b c d |
| 575 | ||
| 576 | /(?m)[xy]|(b|c)/IS | /(?m)[xy]|(b|c)/IS |
| # | Line 546 Capturing subpattern count = 1 | Line 578 Capturing subpattern count = 1 |
| 578 | Options: multiline | Options: multiline |
| 579 | No first char | No first char |
| 580 | No need char | No need char |
| 581 | Subject length lower bound = 1 | |
| 582 | Starting byte set: b c x y | Starting byte set: b c x y |
| 583 | ||
| 584 | /(^a|^b)/Im | /(^a|^b)/Im |
| # | Line 584 Failed: syntax error in subpattern name | Line 617 Failed: syntax error in subpattern name |
| 617 | /((?s)blah)\s+\1/I | /((?s)blah)\s+\1/I |
| 618 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| 619 | Max back reference = 1 | Max back reference = 1 |
| Partial matching not supported | ||
| 620 | No options | No options |
| 621 | First char = 'b' | First char = 'b' |
| 622 | Need char = 'h' | Need char = 'h' |
| # | Line 592 Need char = 'h' | Line 624 Need char = 'h' |
| 624 | /((?i)blah)\s+\1/I | /((?i)blah)\s+\1/I |
| 625 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| 626 | Max back reference = 1 | Max back reference = 1 |
| Partial matching not supported | ||
| 627 | No options | No options |
| 628 | First char = 'b' (caseless) | First char = 'b' (caseless) |
| 629 | Need char = 'h' (caseless) | Need char = 'h' (caseless) |
| 630 | ||
| 631 | /((?i)b)/IDZS | /((?i)b)/IDZS |
| 632 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 633 | Bra 0 | Bra |
| 634 | Bra 1 | CBra 1 |
| 635 | 01 Opt | /i b |
| NC b | ||
| 636 | Ket | Ket |
| 00 Opt | ||
| 637 | Ket | Ket |
| 638 | End | End |
| 639 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 612 Capturing subpattern count = 1 | Line 641 Capturing subpattern count = 1 |
| 641 | No options | No options |
| 642 | First char = 'b' (caseless) | First char = 'b' (caseless) |
| 643 | No need char | No need char |
| 644 | Study returned NULL | Subject length lower bound = 1 |
| 645 | No set of starting bytes | |
| 646 | ||
| 647 | /(a*b|(?i:c*(?-i)d))/IS | /(a*b|(?i:c*(?-i)d))/IS |
| 648 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 649 | No options | No options |
| 650 | No first char | No first char |
| 651 | No need char | No need char |
| 652 | Subject length lower bound = 1 | |
| 653 | Starting byte set: C a b c d | Starting byte set: C a b c d |
| 654 | ||
| 655 | /a$/I | /a$/I |
| # | Line 668 Need char = 'c' | Line 698 Need char = 'c' |
| 698 | ||
| 699 | /^((a+)(?U)([ab]+)(?-U)([bc]+)(\w*))/I | /^((a+)(?U)([ab]+)(?-U)([bc]+)(\w*))/I |
| 700 | Capturing subpattern count = 5 | Capturing subpattern count = 5 |
| Partial matching not supported | ||
| 701 | Options: anchored | Options: anchored |
| 702 | No first char | No first char |
| 703 | No need char | No need char |
| # | Line 685 Capturing subpattern count = 0 | Line 714 Capturing subpattern count = 0 |
| 714 | No options | No options |
| 715 | No first char | No first char |
| 716 | No need char | No need char |
| 717 | Subject length lower bound = 1 | |
| 718 | Starting byte set: a b | Starting byte set: a b |
| 719 | ||
| 720 | /(?<!foo)(alpha|omega)/IS | /(?<!foo)(alpha|omega)/IS |
| # | Line 692 Capturing subpattern count = 1 | Line 722 Capturing subpattern count = 1 |
| 722 | No options | No options |
| 723 | No first char | No first char |
| 724 | Need char = 'a' | Need char = 'a' |
| 725 | Subject length lower bound = 5 | |
| 726 | Starting byte set: a o | Starting byte set: a o |
| 727 | ||
| 728 | /(?!alphabet)[ab]/IS | /(?!alphabet)[ab]/IS |
| # | Line 699 Capturing subpattern count = 0 | Line 730 Capturing subpattern count = 0 |
| 730 | No options | No options |
| 731 | No first char | No first char |
| 732 | No need char | No need char |
| 733 | Subject length lower bound = 1 | |
| 734 | Starting byte set: a b | Starting byte set: a b |
| 735 | ||
| 736 | /(?<=foo\n)^bar/Im | /(?<=foo\n)^bar/Im |
| 737 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| 738 | Contains explicit CR or LF match | |
| 739 | Options: multiline | Options: multiline |
| 740 | No first char | No first char |
| 741 | Need char = 'r' | Need char = 'r' |
| # | Line 719 No match | Line 752 No match |
| 752 | ||
| 753 | /^(?<=foo\n)bar/Im | /^(?<=foo\n)bar/Im |
| 754 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| 755 | Contains explicit CR or LF match | |
| 756 | Options: multiline | Options: multiline |
| 757 | First char at start or follows newline | First char at start or follows newline |
| 758 | Need char = 'r' | Need char = 'r' |
| # | Line 782 No need char | Line 816 No need char |
| 816 | ||
| 817 | /(?>.*)(?<=(abcd)|(xyz))/I | /(?>.*)(?<=(abcd)|(xyz))/I |
| 818 | Capturing subpattern count = 2 | Capturing subpattern count = 2 |
| Partial matching not supported | ||
| 819 | No options | No options |
| 820 | First char at start or follows newline | First char at start or follows newline |
| 821 | No need char | No need char |
| # | Line 852 No match | Line 885 No match |
| 885 | a | a |
| 886 | No match | No match |
| 887 | ||
| 888 | /This one is here because I think Perl 5.005_02 gets the setting of $1 wrong/I | /This one is here because Perl behaves differently; see also the following/I |
| 889 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| 890 | No options | No options |
| 891 | First char = 'T' | First char = 'T' |
| # | Line 864 Max back reference = 1 | Line 897 Max back reference = 1 |
| 897 | Options: anchored | Options: anchored |
| 898 | No first char | No first char |
| 899 | No need char | No need char |
| 900 | aaaa | |
| 901 | No match | |
| 902 | aaaaaa | aaaaaa |
| 903 | 0: aaaaaa | No match |
| 904 | 1: aa | |
| 905 | /Perl does not fail these two for the final subjects. Neither did PCRE until/ | |
| 906 | /release 8.01. The problem is in backtracking into a subpattern that contains/ | |
| 907 | No match | |
| 908 | /a recursive reference to itself. PCRE has now made these into atomic patterns./ | |
| 909 | No match | |
| 910 | ||
| 911 | /^(xa|=?\1a){2}$/ | |
| 912 | xa=xaa | |
| 913 | 0: xa=xaa | |
| 914 | 1: =xaa | |
| 915 | ** Failers | |
| 916 | No match | |
| 917 | xa=xaaa | |
| 918 | No match | |
| 919 | ||
| 920 | /^(xa|=?\1a)+$/ | |
| 921 | xa=xaa | |
| 922 | 0: xa=xaa | |
| 923 | 1: =xaa | |
| 924 | ** Failers | |
| 925 | No match | |
| 926 | xa=xaaa | |
| 927 | No match | |
| 928 | ||
| 929 | /These are syntax tests from Perl 5.005/I | /These are syntax tests from Perl 5.005/I |
| 930 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| # | Line 944 Failed: missing ) at offset 4 | Line 1002 Failed: missing ) at offset 4 |
| 1002 | Failed: unrecognized character after (?< at offset 3 | Failed: unrecognized character after (?< at offset 3 |
| 1003 | ||
| 1004 | /a(?{)b/ | /a(?{)b/ |
| 1005 | Failed: unrecognized character after (? at offset 3 | Failed: unrecognized character after (? or (?- at offset 3 |
| 1006 | ||
| 1007 | /a(?{{})b/ | /a(?{{})b/ |
| 1008 | Failed: unrecognized character after (? at offset 3 | Failed: unrecognized character after (? or (?- at offset 3 |
| 1009 | ||
| 1010 | /a(?{}})b/ | /a(?{}})b/ |
| 1011 | Failed: unrecognized character after (? at offset 3 | Failed: unrecognized character after (? or (?- at offset 3 |
| 1012 | ||
| 1013 | /a(?{"{"})b/ | /a(?{"{"})b/ |
| 1014 | Failed: unrecognized character after (? at offset 3 | Failed: unrecognized character after (? or (?- at offset 3 |
| 1015 | ||
| 1016 | /a(?{"{"}})b/ | /a(?{"{"}})b/ |
| 1017 | Failed: unrecognized character after (? at offset 3 | Failed: unrecognized character after (? or (?- at offset 3 |
| 1018 | ||
| 1019 | /(?(1?)a|b)/ | /(?(1?)a|b)/ |
| 1020 | Failed: malformed number or name after (?( at offset 4 | Failed: malformed number or name after (?( at offset 4 |
| 1021 | ||
| /(?(1)a|b|c)/ | ||
| Failed: conditional group contains more than two branches at offset 10 | ||
| 1022 | /[a[:xyz:/ | /[a[:xyz:/ |
| 1023 | Failed: missing terminating ] for character class at offset 8 | Failed: missing terminating ] for character class at offset 8 |
| 1024 | ||
| # | Line 1004 copy substring 5 failed -7 | Line 1059 copy substring 5 failed -7 |
| 1059 | ||
| 1060 | /(.{20})/I | /(.{20})/I |
| 1061 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 1062 | No options | No options |
| 1063 | No first char | No first char |
| 1064 | No need char | No need char |
| # | Line 1022 No need char | Line 1076 No need char |
| 1076 | ||
| 1077 | /(.{15})/I | /(.{15})/I |
| 1078 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 1079 | No options | No options |
| 1080 | No first char | No first char |
| 1081 | No need char | No need char |
| # | Line 1037 No need char | Line 1090 No need char |
| 1090 | ||
| 1091 | /(.{16})/I | /(.{16})/I |
| 1092 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 1093 | No options | No options |
| 1094 | No first char | No first char |
| 1095 | No need char | No need char |
| # | Line 1104 No need char | Line 1156 No need char |
| 1156 | )((?:[a-zA-Z0-9]+ )((?:[a-zA-Z0-9]+ )((?:[a-zA-Z0-9]+ )((?:[a-zA-Z0-9]+ | )((?:[a-zA-Z0-9]+ )((?:[a-zA-Z0-9]+ )((?:[a-zA-Z0-9]+ )((?:[a-zA-Z0-9]+ |
| 1157 | )?)?)?)?)?)?)?)?)?otherword/I | )?)?)?)?)?)?)?)?)?otherword/I |
| 1158 | Capturing subpattern count = 8 | Capturing subpattern count = 8 |
| 1159 | Partial matching not supported | Contains explicit CR or LF match |
| 1160 | No options | No options |
| 1161 | First char = 'w' | First char = 'w' |
| 1162 | Need char = 'd' | Need char = 'd' |
| 1163 | ||
| 1164 | /.*X/IDZ | /.*X/IDZ |
| 1165 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1166 | Bra 0 | Bra |
| 1167 | Any* | Any* |
| 1168 | X | X |
| 1169 | Ket | Ket |
| 1170 | End | End |
| 1171 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1172 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1173 | No options | No options |
| 1174 | First char at start or follows newline | First char at start or follows newline |
| 1175 | Need char = 'X' | Need char = 'X' |
| 1176 | ||
| 1177 | /.*X/IDZs | /.*X/IDZs |
| 1178 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1179 | Bra 0 | Bra |
| 1180 | Any* | AllAny* |
| 1181 | X | X |
| 1182 | Ket | Ket |
| 1183 | End | End |
| 1184 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1185 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1186 | Options: anchored dotall | Options: anchored dotall |
| 1187 | No first char | No first char |
| 1188 | Need char = 'X' | Need char = 'X' |
| 1189 | ||
| 1190 | /(.*X|^B)/IDZ | /(.*X|^B)/IDZ |
| 1191 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1192 | Bra 0 | Bra |
| 1193 | Bra 1 | CBra 1 |
| 1194 | Any* | Any* |
| 1195 | X | X |
| 1196 | Alt | Alt |
| # | Line 1151 Need char = 'X' | Line 1201 Need char = 'X' |
| 1201 | End | End |
| 1202 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1203 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 1204 | No options | No options |
| 1205 | First char at start or follows newline | First char at start or follows newline |
| 1206 | No need char | No need char |
| 1207 | ||
| 1208 | /(.*X|^B)/IDZs | /(.*X|^B)/IDZs |
| 1209 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1210 | Bra 0 | Bra |
| 1211 | Bra 1 | CBra 1 |
| 1212 | Any* | AllAny* |
| 1213 | X | X |
| 1214 | Alt | Alt |
| 1215 | ^ | ^ |
| # | Line 1170 No need char | Line 1219 No need char |
| 1219 | End | End |
| 1220 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1221 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 1222 | Options: anchored dotall | Options: anchored dotall |
| 1223 | No first char | No first char |
| 1224 | No need char | No need char |
| 1225 | ||
| 1226 | /(?s)(.*X|^B)/IDZ | /(?s)(.*X|^B)/IDZ |
| 1227 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1228 | Bra 0 | Bra |
| 1229 | Bra 1 | CBra 1 |
| 1230 | Any* | AllAny* |
| 1231 | X | X |
| 1232 | Alt | Alt |
| 1233 | ^ | ^ |
| # | Line 1189 No need char | Line 1237 No need char |
| 1237 | End | End |
| 1238 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1239 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 1240 | Options: anchored dotall | Options: anchored dotall |
| 1241 | No first char | No first char |
| 1242 | No need char | No need char |
| 1243 | ||
| 1244 | /(?s:.*X|^B)/IDZ | /(?s:.*X|^B)/IDZ |
| 1245 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1246 | Bra 0 | Bra |
| 1247 | Bra 0 | Bra |
| 1248 | 04 Opt | AllAny* |
| Any* | ||
| 1249 | X | X |
| 1250 | Alt | Alt |
| 04 Opt | ||
| 1251 | ^ | ^ |
| 1252 | B | B |
| 1253 | Ket | Ket |
| 00 Opt | ||
| 1254 | Ket | Ket |
| 1255 | End | End |
| 1256 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1257 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| 1258 | Partial matching not supported | Options: anchored |
| 1259 | No options | No first char |
| First char at start or follows newline | ||
| 1260 | No need char | No need char |
| 1261 | ||
| 1262 | /\Biss\B/I+ | /\Biss\B/I+ |
| # | Line 1296 No need char | Line 1339 No need char |
| 1339 | ||
| 1340 | /.*iss/Ig+ | /.*iss/Ig+ |
| 1341 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1342 | No options | No options |
| 1343 | First char at start or follows newline | First char at start or follows newline |
| 1344 | Need char = 's' | Need char = 's' |
| # | Line 1347 No need char | Line 1389 No need char |
| 1389 | ||
| 1390 | /^ab\n/Ig+ | /^ab\n/Ig+ |
| 1391 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| 1392 | Contains explicit CR or LF match | |
| 1393 | Options: anchored | Options: anchored |
| 1394 | No first char | No first char |
| 1395 | No need char | No need char |
| # | Line 1356 No need char | Line 1399 No need char |
| 1399 | ||
| 1400 | /^ab\n/Img+ | /^ab\n/Img+ |
| 1401 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| 1402 | Contains explicit CR or LF match | |
| 1403 | Options: multiline | Options: multiline |
| 1404 | First char at start or follows newline | First char at start or follows newline |
| 1405 | Need char = 10 | Need char = 10 |
| # | Line 1397 Need char = 'c' | Line 1441 Need char = 'c' |
| 1441 | ||
| 1442 | /a*/I | /a*/I |
| 1443 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1444 | No options | No options |
| 1445 | No first char | No first char |
| 1446 | No need char | No need char |
| 1447 | ||
| 1448 | /a+/I | /a+/I |
| 1449 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1450 | No options | No options |
| 1451 | First char = 'a' | First char = 'a' |
| 1452 | No need char | No need char |
| 1453 | ||
| 1454 | /(baa|a+)/I | /(baa|a+)/I |
| 1455 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 1456 | No options | No options |
| 1457 | No first char | No first char |
| 1458 | Need char = 'a' | Need char = 'a' |
| 1459 | ||
| 1460 | /a{0,3}/I | /a{0,3}/I |
| 1461 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1462 | No options | No options |
| 1463 | No first char | No first char |
| 1464 | No need char | No need char |
| 1465 | ||
| 1466 | /baa{3,}/I | /baa{3,}/I |
| 1467 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1468 | No options | No options |
| 1469 | First char = 'b' | First char = 'b' |
| 1470 | Need char = 'a' | Need char = 'a' |
| 1471 | ||
| 1472 | /"([^\\"]+|\\.)*"/I | /"([^\\"]+|\\.)*"/I |
| 1473 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 1474 | No options | No options |
| 1475 | First char = '"' | First char = '"' |
| 1476 | Need char = '"' | Need char = '"' |
| # | Line 1487 Need char = 'b' | Line 1525 Need char = 'b' |
| 1525 | ||
| 1526 | /abc*/I | /abc*/I |
| 1527 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1528 | No options | No options |
| 1529 | First char = 'a' | First char = 'a' |
| 1530 | Need char = 'b' | Need char = 'b' |
| 1531 | ||
| 1532 | /ab.c*/I | /ab.c*/I |
| 1533 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1534 | No options | No options |
| 1535 | First char = 'a' | First char = 'a' |
| 1536 | Need char = 'b' | Need char = 'b' |
| 1537 | ||
| 1538 | /a.c*/I | /a.c*/I |
| 1539 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1540 | No options | No options |
| 1541 | First char = 'a' | First char = 'a' |
| 1542 | No need char | No need char |
| 1543 | ||
| 1544 | /.c*/I | /.c*/I |
| 1545 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1546 | No options | No options |
| 1547 | No first char | No first char |
| 1548 | No need char | No need char |
| 1549 | ||
| 1550 | /ac*/I | /ac*/I |
| 1551 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1552 | No options | No options |
| 1553 | First char = 'a' | First char = 'a' |
| 1554 | No need char | No need char |
| 1555 | ||
| 1556 | /(a.c*|b.c*)/I | /(a.c*|b.c*)/I |
| 1557 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 1558 | No options | No options |
| 1559 | No first char | No first char |
| 1560 | No need char | No need char |
| 1561 | ||
| 1562 | /a.c*|aba/I | /a.c*|aba/I |
| 1563 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1564 | No options | No options |
| 1565 | First char = 'a' | First char = 'a' |
| 1566 | No need char | No need char |
| 1567 | ||
| 1568 | /.+a/I | /.+a/I |
| 1569 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1570 | No options | No options |
| 1571 | No first char | No first char |
| 1572 | Need char = 'a' | Need char = 'a' |
| 1573 | ||
| 1574 | /(?=abcda)a.*/I | /(?=abcda)a.*/I |
| 1575 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1576 | No options | No options |
| 1577 | First char = 'a' | First char = 'a' |
| 1578 | Need char = 'a' | Need char = 'a' |
| 1579 | ||
| 1580 | /(?=a)a.*/I | /(?=a)a.*/I |
| 1581 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1582 | No options | No options |
| 1583 | First char = 'a' | First char = 'a' |
| 1584 | No need char | No need char |
| # | Line 1563 No need char | Line 1591 No need char |
| 1591 | ||
| 1592 | /a\d*/I | /a\d*/I |
| 1593 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1594 | No options | No options |
| 1595 | First char = 'a' | First char = 'a' |
| 1596 | No need char | No need char |
| 1597 | ||
| 1598 | /ab\d*/I | /ab\d*/I |
| 1599 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1600 | No options | No options |
| 1601 | First char = 'a' | First char = 'a' |
| 1602 | Need char = 'b' | Need char = 'b' |
| # | Line 1589 Need char = 'd' | Line 1615 Need char = 'd' |
| 1615 | ||
| 1616 | /ab\d+/I | /ab\d+/I |
| 1617 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1618 | No options | No options |
| 1619 | First char = 'a' | First char = 'a' |
| 1620 | Need char = 'b' | Need char = 'b' |
| 1621 | ||
| 1622 | /a(?(1)b)/I | /a(?(1)b)(.)/I |
| 1623 | Capturing subpattern count = 0 | Capturing subpattern count = 1 |
| 1624 | No options | No options |
| 1625 | First char = 'a' | First char = 'a' |
| 1626 | No need char | No need char |
| 1627 | ||
| 1628 | /a(?(1)bag|big)/I | /a(?(1)bag|big)(.)/I |
| 1629 | Capturing subpattern count = 0 | Capturing subpattern count = 1 |
| 1630 | No options | No options |
| 1631 | First char = 'a' | First char = 'a' |
| 1632 | Need char = 'g' | Need char = 'g' |
| 1633 | ||
| 1634 | /a(?(1)bag|big)*/I | /a(?(1)bag|big)*(.)/I |
| 1635 | Capturing subpattern count = 0 | Capturing subpattern count = 1 |
| 1636 | No options | No options |
| 1637 | First char = 'a' | First char = 'a' |
| 1638 | No need char | No need char |
| 1639 | ||
| 1640 | /a(?(1)bag|big)+/I | /a(?(1)bag|big)+(.)/I |
| 1641 | Capturing subpattern count = 0 | Capturing subpattern count = 1 |
| 1642 | No options | No options |
| 1643 | First char = 'a' | First char = 'a' |
| 1644 | Need char = 'g' | Need char = 'g' |
| 1645 | ||
| 1646 | /a(?(1)b..|b..)/I | /a(?(1)b..|b..)(.)/I |
| 1647 | Capturing subpattern count = 0 | Capturing subpattern count = 1 |
| 1648 | No options | No options |
| 1649 | First char = 'a' | First char = 'a' |
| 1650 | Need char = 'b' | Need char = 'b' |
| # | Line 1664 No need char | Line 1689 No need char |
| 1689 | \Nabc | \Nabc |
| 1690 | No match | No match |
| 1691 | ||
| 1692 | /a*(b+)(z)(z)/IP | /a*(b+)(z)(z)/P |
| 1693 | aaaabbbbzzzz | aaaabbbbzzzz |
| 1694 | 0: aaaabbbbzz | 0: aaaabbbbzz |
| 1695 | 1: bbbb | 1: bbbb |
| # | Line 1696 Capturing subpattern count = 0 | Line 1721 Capturing subpattern count = 0 |
| 1721 | Options: anchored | Options: anchored |
| 1722 | No first char | No first char |
| 1723 | Need char = 'd' | Need char = 'd' |
| 1724 | Study returned NULL | Subject length lower bound = 4 |
| 1725 | No set of starting bytes | |
| 1726 | ||
| 1727 | /\( # ( at start | /\( # ( at start |
| 1728 | (?: # Non-capturing bracket | (?: # Non-capturing bracket |
| # | Line 1707 Study returned NULL | Line 1733 Study returned NULL |
| 1733 | \) # Closing ) | \) # Closing ) |
| 1734 | /Ix | /Ix |
| 1735 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1736 | Options: extended | Options: extended |
| 1737 | First char = '(' | First char = '(' |
| 1738 | Need char = ')' | Need char = ')' |
| # | Line 1736 No match | Line 1761 No match |
| 1761 | ||
| 1762 | /\( ( (?>[^()]+) | (?R) )* \) /Ixg | /\( ( (?>[^()]+) | (?R) )* \) /Ixg |
| 1763 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 1764 | Options: extended | Options: extended |
| 1765 | First char = '(' | First char = '(' |
| 1766 | Need char = ')' | Need char = ')' |
| # | Line 1751 Need char = ')' | Line 1775 Need char = ')' |
| 1775 | ||
| 1776 | /\( (?: (?>[^()]+) | (?R) ) \) /Ix | /\( (?: (?>[^()]+) | (?R) ) \) /Ix |
| 1777 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1778 | Options: extended | Options: extended |
| 1779 | First char = '(' | First char = '(' |
| 1780 | Need char = ')' | Need char = ')' |
| # | Line 1770 No match | Line 1793 No match |
| 1793 | ||
| 1794 | /\( (?: (?>[^()]+) | (?R) )? \) /Ix | /\( (?: (?>[^()]+) | (?R) )? \) /Ix |
| 1795 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 1796 | Options: extended | Options: extended |
| 1797 | First char = '(' | First char = '(' |
| 1798 | Need char = ')' | Need char = ')' |
| # | Line 1781 Need char = ')' | Line 1803 Need char = ')' |
| 1803 | ||
| 1804 | /\( ( (?>[^()]+) | (?R) )* \) /Ix | /\( ( (?>[^()]+) | (?R) )* \) /Ix |
| 1805 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 1806 | Options: extended | Options: extended |
| 1807 | First char = '(' | First char = '(' |
| 1808 | Need char = ')' | Need char = ')' |
| # | Line 1791 Need char = ')' | Line 1812 Need char = ')' |
| 1812 | ||
| 1813 | /\( ( ( (?>[^()]+) | (?R) )* ) \) /Ix | /\( ( ( (?>[^()]+) | (?R) )* ) \) /Ix |
| 1814 | Capturing subpattern count = 2 | Capturing subpattern count = 2 |
| Partial matching not supported | ||
| 1815 | Options: extended | Options: extended |
| 1816 | First char = '(' | First char = '(' |
| 1817 | Need char = ')' | Need char = ')' |
| # | Line 1802 Need char = ')' | Line 1822 Need char = ')' |
| 1822 | ||
| 1823 | /\( (123)? ( ( (?>[^()]+) | (?R) )* ) \) /Ix | /\( (123)? ( ( (?>[^()]+) | (?R) )* ) \) /Ix |
| 1824 | Capturing subpattern count = 3 | Capturing subpattern count = 3 |
| Partial matching not supported | ||
| 1825 | Options: extended | Options: extended |
| 1826 | First char = '(' | First char = '(' |
| 1827 | Need char = ')' | Need char = ')' |
| # | Line 1819 Need char = ')' | Line 1838 Need char = ')' |
| 1838 | ||
| 1839 | /\( ( (123)? ( (?>[^()]+) | (?R) )* ) \) /Ix | /\( ( (123)? ( (?>[^()]+) | (?R) )* ) \) /Ix |
| 1840 | Capturing subpattern count = 3 | Capturing subpattern count = 3 |
| Partial matching not supported | ||
| 1841 | Options: extended | Options: extended |
| 1842 | First char = '(' | First char = '(' |
| 1843 | Need char = ')' | Need char = ')' |
| # | Line 1836 Need char = ')' | Line 1854 Need char = ')' |
| 1854 | ||
| 1855 | /\( (((((((((( ( (?>[^()]+) | (?R) )* )))))))))) \) /Ix | /\( (((((((((( ( (?>[^()]+) | (?R) )* )))))))))) \) /Ix |
| 1856 | Capturing subpattern count = 11 | Capturing subpattern count = 11 |
| Partial matching not supported | ||
| 1857 | Options: extended | Options: extended |
| 1858 | First char = '(' | First char = '(' |
| 1859 | Need char = ')' | Need char = ')' |
| # | Line 1856 Need char = ')' | Line 1873 Need char = ')' |
| 1873 | ||
| 1874 | /\( ( ( (?>[^()<>]+) | ((?>[^()]+)) | (?R) )* ) \) /Ix | /\( ( ( (?>[^()<>]+) | ((?>[^()]+)) | (?R) )* ) \) /Ix |
| 1875 | Capturing subpattern count = 3 | Capturing subpattern count = 3 |
| Partial matching not supported | ||
| 1876 | Options: extended | Options: extended |
| 1877 | First char = '(' | First char = '(' |
| 1878 | Need char = ')' | Need char = ')' |
| # | Line 1864 Need char = ')' | Line 1880 Need char = ')' |
| 1880 | 0: (abcd(xyz<p>qrs)123) | 0: (abcd(xyz<p>qrs)123) |
| 1881 | 1: abcd(xyz<p>qrs)123 | 1: abcd(xyz<p>qrs)123 |
| 1882 | 2: 123 | 2: 123 |
| 3: <unset> | ||
| 1883 | ||
| 1884 | /\( ( ( (?>[^()]+) | ((?R)) )* ) \) /Ix | /\( ( ( (?>[^()]+) | ((?R)) )* ) \) /Ix |
| 1885 | Capturing subpattern count = 3 | Capturing subpattern count = 3 |
| Partial matching not supported | ||
| 1886 | Options: extended | Options: extended |
| 1887 | First char = '(' | First char = '(' |
| 1888 | Need char = ')' | Need char = ')' |
| # | Line 1885 Need char = ')' | Line 1899 Need char = ')' |
| 1899 | ||
| 1900 | /^[[:alnum:]]/DZ | /^[[:alnum:]]/DZ |
| 1901 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1902 | Bra 0 | Bra |
| 1903 | ^ | ^ |
| 1904 | [0-9A-Za-z] | [0-9A-Za-z] |
| 1905 | Ket | Ket |
| # | Line 1898 No need char | Line 1912 No need char |
| 1912 | ||
| 1913 | /^[[:^alnum:]]/DZ | /^[[:^alnum:]]/DZ |
| 1914 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1915 | Bra 0 | Bra |
| 1916 | ^ | ^ |
| 1917 | [\x00-/:-@[-`{-\xff] | [\x00-/:-@[-`{-\xff] (neg) |
| 1918 | Ket | Ket |
| 1919 | End | End |
| 1920 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 1911 No need char | Line 1925 No need char |
| 1925 | ||
| 1926 | /^[[:alpha:]]/DZ | /^[[:alpha:]]/DZ |
| 1927 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1928 | Bra 0 | Bra |
| 1929 | ^ | ^ |
| 1930 | [A-Za-z] | [A-Za-z] |
| 1931 | Ket | Ket |
| # | Line 1924 No need char | Line 1938 No need char |
| 1938 | ||
| 1939 | /^[[:^alpha:]]/DZ | /^[[:^alpha:]]/DZ |
| 1940 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1941 | Bra 0 | Bra |
| 1942 | ^ | ^ |
| 1943 | [\x00-@[-`{-\xff] | [\x00-@[-`{-\xff] (neg) |
| 1944 | Ket | Ket |
| 1945 | End | End |
| 1946 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 1940 Capturing subpattern count = 0 | Line 1954 Capturing subpattern count = 0 |
| 1954 | No options | No options |
| 1955 | No first char | No first char |
| 1956 | No need char | No need char |
| 1957 | Subject length lower bound = 1 | |
| 1958 | Starting byte set: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z | Starting byte set: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z |
| 1959 | _ a b c d e f g h i j k l m n o p q r s t u v w x y z | _ a b c d e f g h i j k l m n o p q r s t u v w x y z |
| 1960 | ||
| 1961 | /^[[:ascii:]]/DZ | /^[[:ascii:]]/DZ |
| 1962 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1963 | Bra 0 | Bra |
| 1964 | ^ | ^ |
| 1965 | [\x00-\x7f] | [\x00-\x7f] |
| 1966 | Ket | Ket |
| # | Line 1958 No need char | Line 1973 No need char |
| 1973 | ||
| 1974 | /^[[:^ascii:]]/DZ | /^[[:^ascii:]]/DZ |
| 1975 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1976 | Bra 0 | Bra |
| 1977 | ^ | ^ |
| 1978 | [\x80-\xff] | [\x80-\xff] (neg) |
| 1979 | Ket | Ket |
| 1980 | End | End |
| 1981 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 1971 No need char | Line 1986 No need char |
| 1986 | ||
| 1987 | /^[[:blank:]]/DZ | /^[[:blank:]]/DZ |
| 1988 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1989 | Bra 0 | Bra |
| 1990 | ^ | ^ |
| 1991 | [\x09 ] | [\x09 ] |
| 1992 | Ket | Ket |
| # | Line 1984 No need char | Line 1999 No need char |
| 1999 | ||
| 2000 | /^[[:^blank:]]/DZ | /^[[:^blank:]]/DZ |
| 2001 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2002 | Bra 0 | Bra |
| 2003 | ^ | ^ |
| 2004 | [\x00-\x08\x0a-\x1f!-\xff] | [\x00-\x08\x0a-\x1f!-\xff] (neg) |
| 2005 | Ket | Ket |
| 2006 | End | End |
| 2007 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 1997 No need char | Line 2012 No need char |
| 2012 | ||
| 2013 | /[\n\x0b\x0c\x0d[:blank:]]/IS | /[\n\x0b\x0c\x0d[:blank:]]/IS |
| 2014 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| 2015 | Contains explicit CR or LF match | |
| 2016 | No options | No options |
| 2017 | No first char | No first char |
| 2018 | No need char | No need char |
| 2019 | Subject length lower bound = 1 | |
| 2020 | Starting byte set: \x09 \x0a \x0b \x0c \x0d \x20 | Starting byte set: \x09 \x0a \x0b \x0c \x0d \x20 |
| 2021 | ||
| 2022 | /^[[:cntrl:]]/DZ | /^[[:cntrl:]]/DZ |
| 2023 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2024 | Bra 0 | Bra |
| 2025 | ^ | ^ |
| 2026 | [\x00-\x1f\x7f] | [\x00-\x1f\x7f] |
| 2027 | Ket | Ket |
| # | Line 2017 No need char | Line 2034 No need char |
| 2034 | ||
| 2035 | /^[[:digit:]]/DZ | /^[[:digit:]]/DZ |
| 2036 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2037 | Bra 0 | Bra |
| 2038 | ^ | ^ |
| 2039 | [0-9] | [0-9] |
| 2040 | Ket | Ket |
| # | Line 2030 No need char | Line 2047 No need char |
| 2047 | ||
| 2048 | /^[[:graph:]]/DZ | /^[[:graph:]]/DZ |
| 2049 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2050 | Bra 0 | Bra |
| 2051 | ^ | ^ |
| 2052 | [!-~] | [!-~] |
| 2053 | Ket | Ket |
| # | Line 2043 No need char | Line 2060 No need char |
| 2060 | ||
| 2061 | /^[[:lower:]]/DZ | /^[[:lower:]]/DZ |
| 2062 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2063 | Bra 0 | Bra |
| 2064 | ^ | ^ |
| 2065 | [a-z] | [a-z] |
| 2066 | Ket | Ket |
| # | Line 2056 No need char | Line 2073 No need char |
| 2073 | ||
| 2074 | /^[[:print:]]/DZ | /^[[:print:]]/DZ |
| 2075 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2076 | Bra 0 | Bra |
| 2077 | ^ | ^ |
| 2078 | [ -~] | [ -~] |
| 2079 | Ket | Ket |
| # | Line 2069 No need char | Line 2086 No need char |
| 2086 | ||
| 2087 | /^[[:punct:]]/DZ | /^[[:punct:]]/DZ |
| 2088 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2089 | Bra 0 | Bra |
| 2090 | ^ | ^ |
| 2091 | [!-/:-@[-`{-~] | [!-/:-@[-`{-~] |
| 2092 | Ket | Ket |
| # | Line 2082 No need char | Line 2099 No need char |
| 2099 | ||
| 2100 | /^[[:space:]]/DZ | /^[[:space:]]/DZ |
| 2101 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2102 | Bra 0 | Bra |
| 2103 | ^ | ^ |
| 2104 | [\x09-\x0d ] | [\x09-\x0d ] |
| 2105 | Ket | Ket |
| # | Line 2095 No need char | Line 2112 No need char |
| 2112 | ||
| 2113 | /^[[:upper:]]/DZ | /^[[:upper:]]/DZ |
| 2114 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2115 | Bra 0 | Bra |
| 2116 | ^ | ^ |
| 2117 | [A-Z] | [A-Z] |
| 2118 | Ket | Ket |
| # | Line 2108 No need char | Line 2125 No need char |
| 2125 | ||
| 2126 | /^[[:xdigit:]]/DZ | /^[[:xdigit:]]/DZ |
| 2127 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2128 | Bra 0 | Bra |
| 2129 | ^ | ^ |
| 2130 | [0-9A-Fa-f] | [0-9A-Fa-f] |
| 2131 | Ket | Ket |
| # | Line 2121 No need char | Line 2138 No need char |
| 2138 | ||
| 2139 | /^[[:word:]]/DZ | /^[[:word:]]/DZ |
| 2140 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2141 | Bra 0 | Bra |
| 2142 | ^ | ^ |
| 2143 | [0-9A-Z_a-z] | [0-9A-Z_a-z] |
| 2144 | Ket | Ket |
| # | Line 2134 No need char | Line 2151 No need char |
| 2151 | ||
| 2152 | /^[[:^cntrl:]]/DZ | /^[[:^cntrl:]]/DZ |
| 2153 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2154 | Bra 0 | Bra |
| 2155 | ^ | ^ |
| 2156 | [ -~\x80-\xff] | [ -~\x80-\xff] (neg) |
| 2157 | Ket | Ket |
| 2158 | End | End |
| 2159 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 2147 No need char | Line 2164 No need char |
| 2164 | ||
| 2165 | /^[12[:^digit:]]/DZ | /^[12[:^digit:]]/DZ |
| 2166 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2167 | Bra 0 | Bra |
| 2168 | ^ | ^ |
| 2169 | [\x00-/12:-\xff] | [\x00-/12:-\xff] (neg) |
| 2170 | Ket | Ket |
| 2171 | End | End |
| 2172 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 2160 No need char | Line 2177 No need char |
| 2177 | ||
| 2178 | /^[[:^blank:]]/DZ | /^[[:^blank:]]/DZ |
| 2179 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2180 | Bra 0 | Bra |
| 2181 | ^ | ^ |
| 2182 | [\x00-\x08\x0a-\x1f!-\xff] | [\x00-\x08\x0a-\x1f!-\xff] (neg) |
| 2183 | Ket | Ket |
| 2184 | End | End |
| 2185 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 2173 No need char | Line 2190 No need char |
| 2190 | ||
| 2191 | /[01[:alpha:]%]/DZ | /[01[:alpha:]%]/DZ |
| 2192 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2193 | Bra 0 | Bra |
| 2194 | [%01A-Za-z] | [%01A-Za-z] |
| 2195 | Ket | Ket |
| 2196 | End | End |
| # | Line 2246 Need char = 'd' | Line 2263 Need char = 'd' |
| 2263 | /(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\w+)\s+(\270)/I | /(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\d+(?:\s|$))(\w+)\s+(\270)/I |
| 2264 | Capturing subpattern count = 271 | Capturing subpattern count = 271 |
| 2265 | Max back reference = 270 | Max back reference = 270 |
| Partial matching not supported | ||
| 2266 | No options | No options |
| 2267 | No first char | No first char |
| 2268 | No need char | No need char |
| # | Line 2694 Need char = '-' | Line 2710 Need char = '-' |
| 2710 | ||
| 2711 | /#/IxDZ | /#/IxDZ |
| 2712 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2713 | Bra 0 | Bra |
| 2714 | Ket | Ket |
| 2715 | End | End |
| 2716 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 2705 No need char | Line 2721 No need char |
| 2721 | ||
| 2722 | /a#/IxDZ | /a#/IxDZ |
| 2723 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2724 | Bra 0 | Bra |
| 2725 | a | a |
| 2726 | Ket | Ket |
| 2727 | End | End |
| # | Line 2717 No need char | Line 2733 No need char |
| 2733 | ||
| 2734 | /[\s]/DZ | /[\s]/DZ |
| 2735 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2736 | Bra 0 | Bra |
| 2737 | [\x09\x0a\x0c\x0d ] | [\x09\x0a\x0c\x0d ] |
| 2738 | Ket | Ket |
| 2739 | End | End |
| # | Line 2729 No need char | Line 2745 No need char |
| 2745 | ||
| 2746 | /[\S]/DZ | /[\S]/DZ |
| 2747 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2748 | Bra 0 | Bra |
| 2749 | [\x00-\x08\x0b\x0e-\x1f!-\xff] | [\x00-\x08\x0b\x0e-\x1f!-\xff] (neg) |
| 2750 | Ket | Ket |
| 2751 | End | End |
| 2752 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 2741 No need char | Line 2757 No need char |
| 2757 | ||
| 2758 | /a(?i)b/DZ | /a(?i)b/DZ |
| 2759 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2760 | Bra 0 | Bra |
| 2761 | a | a |
| 2762 | 01 Opt | /i b |
| NC b | ||
| 2763 | Ket | Ket |
| 2764 | End | End |
| 2765 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 2763 No match | Line 2778 No match |
| 2778 | ||
| 2779 | /(a(?i)b)/DZ | /(a(?i)b)/DZ |
| 2780 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2781 | Bra 0 | Bra |
| 2782 | Bra 1 | CBra 1 |
| 2783 | a | a |
| 2784 | 01 Opt | /i b |
| NC b | ||
| 2785 | Ket | Ket |
| 00 Opt | ||
| 2786 | Ket | Ket |
| 2787 | End | End |
| 2788 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 2790 No match | Line 2803 No match |
| 2803 | ||
| 2804 | / (?i)abc/IxDZ | / (?i)abc/IxDZ |
| 2805 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2806 | Bra 0 | Bra |
| 2807 | NC abc | /i abc |
| 2808 | Ket | Ket |
| 2809 | End | End |
| 2810 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 2803 Need char = 'c' (caseless) | Line 2816 Need char = 'c' (caseless) |
| 2816 | /#this is a comment | /#this is a comment |
| 2817 | (?i)abc/IxDZ | (?i)abc/IxDZ |
| 2818 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2819 | Bra 0 | Bra |
| 2820 | NC abc | /i abc |
| 2821 | Ket | Ket |
| 2822 | End | End |
| 2823 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 2815 Need char = 'c' (caseless) | Line 2828 Need char = 'c' (caseless) |
| 2828 | ||
| 2829 | /123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890/DZ | /123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890/DZ |
| 2830 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2831 | Bra 0 | Bra |
| 2832 | 123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 | 123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 |
| 2833 | Ket | Ket |
| 2834 | End | End |
| # | Line 2827 Need char = '0' | Line 2840 Need char = '0' |
| 2840 | ||
| 2841 | /\Q123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890/DZ | /\Q123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890/DZ |
| 2842 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2843 | Bra 0 | Bra |
| 2844 | 123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 | 123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 |
| 2845 | Ket | Ket |
| 2846 | End | End |
| # | Line 2839 Need char = '0' | Line 2852 Need char = '0' |
| 2852 | ||
| 2853 | /\Q\E/DZ | /\Q\E/DZ |
| 2854 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2855 | Bra 0 | Bra |
| 2856 | Ket | Ket |
| 2857 | End | End |
| 2858 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 2852 No need char | Line 2865 No need char |
| 2865 | ||
| 2866 | /\Q\Ex/DZ | /\Q\Ex/DZ |
| 2867 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2868 | Bra 0 | Bra |
| 2869 | x | x |
| 2870 | Ket | Ket |
| 2871 | End | End |
| # | Line 2864 No need char | Line 2877 No need char |
| 2877 | ||
| 2878 | / \Q\E/DZ | / \Q\E/DZ |
| 2879 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2880 | Bra 0 | Bra |
| 2881 | ||
| 2882 | Ket | Ket |
| 2883 | End | End |
| # | Line 2876 No need char | Line 2889 No need char |
| 2889 | ||
| 2890 | /a\Q\E/DZ | /a\Q\E/DZ |
| 2891 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2892 | Bra 0 | Bra |
| 2893 | a | a |
| 2894 | Ket | Ket |
| 2895 | End | End |
| # | Line 2894 No need char | Line 2907 No need char |
| 2907 | ||
| 2908 | /a\Q\Eb/DZ | /a\Q\Eb/DZ |
| 2909 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2910 | Bra 0 | Bra |
| 2911 | ab | ab |
| 2912 | Ket | Ket |
| 2913 | End | End |
| # | Line 2908 Need char = 'b' | Line 2921 Need char = 'b' |
| 2921 | ||
| 2922 | /\Q\Eabc/DZ | /\Q\Eabc/DZ |
| 2923 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2924 | Bra 0 | Bra |
| 2925 | abc | abc |
| 2926 | Ket | Ket |
| 2927 | End | End |
| # | Line 2920 Need char = 'c' | Line 2933 Need char = 'c' |
| 2933 | ||
| 2934 | /x*+\w/DZ | /x*+\w/DZ |
| 2935 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2936 | Bra 0 | Bra |
| 2937 | x*+ | x*+ |
| 2938 | \w | \w |
| 2939 | Ket | Ket |
| 2940 | End | End |
| 2941 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2942 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 2943 | No options | No options |
| 2944 | No first char | No first char |
| 2945 | No need char | No need char |
| # | Line 2938 No match | Line 2950 No match |
| 2950 | ||
| 2951 | /x?+/DZ | /x?+/DZ |
| 2952 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2953 | Bra 0 | Bra |
| 2954 | x?+ | x?+ |
| 2955 | Ket | Ket |
| 2956 | End | End |
| # | Line 2950 No need char | Line 2962 No need char |
| 2962 | ||
| 2963 | /x++/DZ | /x++/DZ |
| 2964 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2965 | Bra 0 | Bra |
| 2966 | x++ | x++ |
| 2967 | Ket | Ket |
| 2968 | End | End |
| 2969 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2970 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 2971 | No options | No options |
| 2972 | First char = 'x' | First char = 'x' |
| 2973 | No need char | No need char |
| 2974 | ||
| 2975 | /x{1,3}+/DZ | /x{1,3}+/DZ |
| 2976 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2977 | Bra 0 | Bra |
| 2978 | Once | Once |
| 2979 | x | x |
| 2980 | x{0,2} | x{0,2} |
| # | Line 2972 No need char | Line 2983 No need char |
| 2983 | End | End |
| 2984 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2985 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 2986 | No options | No options |
| 2987 | First char = 'x' | First char = 'x' |
| 2988 | No need char | No need char |
| 2989 | ||
| 2990 | /(x)*+/DZ | /(x)*+/DZ |
| 2991 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2992 | Bra 0 | Bra |
| 2993 | Once | Braposzero |
| 2994 | Brazero | CBraPos 1 |
| Bra 1 | ||
| 2995 | x | x |
| 2996 | KetRmax | KetRpos |
| Ket | ||
| 2997 | Ket | Ket |
| 2998 | End | End |
| 2999 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 2996 No need char | Line 3004 No need char |
| 3004 | ||
| 3005 | /^(\w++|\s++)*$/I | /^(\w++|\s++)*$/I |
| 3006 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 3007 | Options: anchored | Options: anchored |
| 3008 | No first char | No first char |
| 3009 | No need char | No need char |
| # | Line 3010 No match | Line 3017 No match |
| 3017 | ||
| 3018 | /(\d++)(\w)/I | /(\d++)(\w)/I |
| 3019 | Capturing subpattern count = 2 | Capturing subpattern count = 2 |
| Partial matching not supported | ||
| 3020 | No options | No options |
| 3021 | No first char | No first char |
| 3022 | No need char | No need char |
| # | Line 3025 No match | Line 3031 No match |
| 3031 | ||
| 3032 | /a++b/I | /a++b/I |
| 3033 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 3034 | No options | No options |
| 3035 | First char = 'a' | First char = 'a' |
| 3036 | Need char = 'b' | Need char = 'b' |
| # | Line 3034 Need char = 'b' | Line 3039 Need char = 'b' |
| 3039 | ||
| 3040 | /(a++b)/I | /(a++b)/I |
| 3041 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 3042 | No options | No options |
| 3043 | First char = 'a' | First char = 'a' |
| 3044 | Need char = 'b' | Need char = 'b' |
| # | Line 3044 Need char = 'b' | Line 3048 Need char = 'b' |
| 3048 | ||
| 3049 | /(a++)b/I | /(a++)b/I |
| 3050 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 3051 | No options | No options |
| 3052 | First char = 'a' | First char = 'a' |
| 3053 | Need char = 'b' | Need char = 'b' |
| # | Line 3054 Need char = 'b' | Line 3057 Need char = 'b' |
| 3057 | ||
| 3058 | /([^()]++|\([^()]*\))+/I | /([^()]++|\([^()]*\))+/I |
| 3059 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 3060 | No options | No options |
| 3061 | No first char | No first char |
| 3062 | No need char | No need char |
| # | Line 3064 No need char | Line 3066 No need char |
| 3066 | ||
| 3067 | /\(([^()]++|\([^()]+\))+\)/I | /\(([^()]++|\([^()]+\))+\)/I |
| 3068 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 3069 | No options | No options |
| 3070 | First char = '(' | First char = '(' |
| 3071 | Need char = ')' | Need char = ')' |
| # | Line 3081 No match | Line 3082 No match |
| 3082 | ||
| 3083 | /(abc){1,3}+/DZ | /(abc){1,3}+/DZ |
| 3084 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 3085 | Bra 0 | Bra |
| 3086 | Once | Once |
| 3087 | Bra 1 | CBra 1 |
| 3088 | abc | abc |
| 3089 | Ket | Ket |
| 3090 | Brazero | Brazero |
| 3091 | Bra 0 | Bra |
| 3092 | Bra 1 | CBra 1 |
| 3093 | abc | abc |
| 3094 | Ket | Ket |
| 3095 | Brazero | Brazero |
| 3096 | Bra 1 | CBra 1 |
| 3097 | abc | abc |
| 3098 | Ket | Ket |
| 3099 | Ket | Ket |
| # | Line 3119 Failed: nothing to repeat at offset 7 | Line 3120 Failed: nothing to repeat at offset 7 |
| 3120 | ||
| 3121 | /x(?U)a++b/DZ | /x(?U)a++b/DZ |
| 3122 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 3123 | Bra 0 | Bra |
| 3124 | x | x |
| 3125 | a++ | a++ |
| 3126 | b | b |
| # | Line 3127 Failed: nothing to repeat at offset 7 | Line 3128 Failed: nothing to repeat at offset 7 |
| 3128 | End | End |
| 3129 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 3130 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 3131 | No options | No options |
| 3132 | First char = 'x' | First char = 'x' |
| 3133 | Need char = 'b' | Need char = 'b' |
| # | Line 3136 Need char = 'b' | Line 3136 Need char = 'b' |
| 3136 | ||
| 3137 | /(?U)xa++b/DZ | /(?U)xa++b/DZ |
| 3138 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 3139 | Bra 0 | Bra |
| 3140 | x | x |
| 3141 | a++ | a++ |
| 3142 | b | b |
| # | Line 3144 Need char = 'b' | Line 3144 Need char = 'b' |
| 3144 | End | End |
| 3145 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 3146 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 3147 | Options: ungreedy | Options: ungreedy |
| 3148 | First char = 'x' | First char = 'x' |
| 3149 | Need char = 'b' | Need char = 'b' |
| # | Line 3153 Need char = 'b' | Line 3152 Need char = 'b' |
| 3152 | ||
| 3153 | /^((a+)(?U)([ab]+)(?-U)([bc]+)(\w*))/DZ | /^((a+)(?U)([ab]+)(?-U)([bc]+)(\w*))/DZ |
| 3154 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 3155 | Bra 0 | Bra |
| 3156 | ^ | ^ |
| 3157 | Bra 1 | CBra 1 |
| 3158 | Bra 2 | CBra 2 |
| 3159 | a+ | a+ |
| 3160 | Ket | Ket |
| 3161 | Bra 3 | CBra 3 |
| 3162 | [ab]+? | [ab]+? |
| 3163 | Ket | Ket |
| 3164 | Bra 4 | CBra 4 |
| 3165 | [bc]+ | [bc]+ |
| 3166 | Ket | Ket |
| 3167 | Bra 5 | CBra 5 |
| 3168 | \w* | \w* |
| 3169 | Ket | Ket |
| 3170 | Ket | Ket |
| # | Line 3173 Need char = 'b' | Line 3172 Need char = 'b' |
| 3172 | End | End |
| 3173 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 3174 | Capturing subpattern count = 5 | Capturing subpattern count = 5 |
| Partial matching not supported | ||
| 3175 | Options: anchored | Options: anchored |
| 3176 | No first char | No first char |
| 3177 | No need char | No need char |
| 3178 | ||
| 3179 | /^x(?U)a+b/DZ | /^x(?U)a+b/DZ |
| 3180 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 3181 | Bra 0 | Bra |
| 3182 | ^ | ^ |
| 3183 | x | x |
| 3184 | a++ | a++ |
| # | Line 3189 No need char | Line 3187 No need char |
| 3187 | End | End |
| 3188 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 3189 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 3190 | Options: anchored | Options: anchored |
| 3191 | No first char | No first char |
| 3192 | Need char = 'b' | Need char = 'b' |
| 3193 | ||
| 3194 | /^x(?U)(a+)b/DZ | /^x(?U)(a+)b/DZ |
| 3195 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 3196 | Bra 0 | Bra |
| 3197 | ^ | ^ |
| 3198 | x | x |
| 3199 | Bra 1 | CBra 1 |
| 3200 | a+? | a+? |
| 3201 | Ket | Ket |
| 3202 | b | b |
| # | Line 3207 Need char = 'b' | Line 3204 Need char = 'b' |
| 3204 | End | End |
| 3205 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 3206 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 3207 | Options: anchored | Options: anchored |
| 3208 | No first char | No first char |
| 3209 | Need char = 'b' | Need char = 'b' |
| # | Line 3222 Failed: POSIX collating elements are not | Line 3218 Failed: POSIX collating elements are not |
| 3218 | Failed: POSIX named classes are supported only within a class at offset 0 | Failed: POSIX named classes are supported only within a class at offset 0 |
| 3219 | ||
| 3220 | /\l/I | /\l/I |
| 3221 | Failed: PCRE does not support \L, \l, \N, \U, or \u at offset 1 | Failed: PCRE does not support \L, \l, \N{name}, \U, or \u at offset 1 |
| 3222 | ||
| 3223 | /\L/I | /\L/I |
| 3224 | Failed: PCRE does not support \L, \l, \N, \U, or \u at offset 1 | Failed: PCRE does not support \L, \l, \N{name}, \U, or \u at offset 1 |
| 3225 | ||
| 3226 | /\N{name}/I | /\N{name}/I |
| 3227 | Failed: PCRE does not support \L, \l, \N, \U, or \u at offset 1 | Failed: PCRE does not support \L, \l, \N{name}, \U, or \u at offset 1 |
| 3228 | ||
| 3229 | /\u/I | /\u/I |
| 3230 | Failed: PCRE does not support \L, \l, \N, \U, or \u at offset 1 | Failed: PCRE does not support \L, \l, \N{name}, \U, or \u at offset 1 |
| 3231 | ||
| 3232 | /\U/I | /\U/I |
| 3233 | Failed: PCRE does not support \L, \l, \N, \U, or \u at offset 1 | Failed: PCRE does not support \L, \l, \N{name}, \U, or \u at offset 1 |
| 3234 | ||
| 3235 | /[/I | /[/I |
| 3236 | Failed: missing terminating ] for character class at offset 1 | Failed: missing terminating ] for character class at offset 1 |
| # | Line 3247 Failed: missing terminating ] for charac | Line 3243 Failed: missing terminating ] for charac |
| 3243 | ||
| 3244 | /[\s]/IDZ | /[\s]/IDZ |
| 3245 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 3246 | Bra 0 | Bra |
| 3247 | [\x09\x0a\x0c\x0d ] | [\x09\x0a\x0c\x0d ] |
| 3248 | Ket | Ket |
| 3249 | End | End |
| # | Line 3259 No need char | Line 3255 No need char |
| 3255 | ||
| 3256 | /[[:space:]]/IDZ | /[[:space:]]/IDZ |
| 3257 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 3258 | Bra 0 | Bra |
| 3259 | [\x09-\x0d ] | [\x09-\x0d ] |
| 3260 | Ket | Ket |
| 3261 | End | End |
| # | Line 3271 No need char | Line 3267 No need char |
| 3267 | ||
| 3268 | /[[:space:]abcde]/IDZ | /[[:space:]abcde]/IDZ |
| 3269 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 3270 | Bra 0 | Bra |
| 3271 | [\x09-\x0d a-e] | [\x09-\x0d a-e] |
| 3272 | Ket | Ket |
| 3273 | End | End |
| # | Line 3283 No need char | Line 3279 No need char |
| 3279 | ||
| 3280 | /< (?: (?(R) \d++ | [^<>]*+) | (?R)) * >/Ix | /< (?: (?(R) \d++ | [^<>]*+) | (?R)) * >/Ix |
| 3281 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 3282 | Options: extended | Options: extended |
| 3283 | First char = '<' | First char = '<' |
| 3284 | Need char = '>' | Need char = '>' |
| # | Line 3306 No match | Line 3301 No match |
| 3301 | ||
| 3302 | |8J\$WE\<\.rX\+ix\[d1b\!H\#\?vV0vrK\:ZH1\=2M\>iV\;\?aPhFB\<\*vW\@QW\@sO9\}cfZA\-i\'w\%hKd6gt1UJP\,15_\#QY\$M\^Mss_U\/\]\&LK9\[5vQub\^w\[KDD\<EjmhUZ\?\.akp2dF\>qmj\;2\}YWFdYx\.Ap\]hjCPTP\(n28k\+3\;o\&WXqs\/gOXdr\$\:r\'do0\;b4c\(f_Gr\=\"\\4\)\[01T7ajQJvL\$W\~mL_sS\/4h\:x\*\[ZN\=KLs\&L5zX\/\/\>it\,o\:aU\(\;Z\>pW\&T7oP\'2K\^E\:x9\'c\[\%z\-\,64JQ5AeH_G\#KijUKghQw\^\\vea3a\?kka_G\$8\#\`\*kynsxzBLru\'\]k_\[7FrVx\}\^\=\$blx\>s\-N\%j\;D\*aZDnsw\:YKZ\%Q\.Kne9\#hP\?\+b3\(SOvL\,\^\;\&u5\@\?5C5Bhb\=m\-vEh_L15Jl\]U\)0RP6\{q\%L\^_z5E\'Dw6X\b|IDZ | |8J\$WE\<\.rX\+ix\[d1b\!H\#\?vV0vrK\:ZH1\=2M\>iV\;\?aPhFB\<\*vW\@QW\@sO9\}cfZA\-i\'w\%hKd6gt1UJP\,15_\#QY\$M\^Mss_U\/\]\&LK9\[5vQub\^w\[KDD\<EjmhUZ\?\.akp2dF\>qmj\;2\}YWFdYx\.Ap\]hjCPTP\(n28k\+3\;o\&WXqs\/gOXdr\$\:r\'do0\;b4c\(f_Gr\=\"\\4\)\[01T7ajQJvL\$W\~mL_sS\/4h\:x\*\[ZN\=KLs\&L5zX\/\/\>it\,o\:aU\(\;Z\>pW\&T7oP\'2K\^E\:x9\'c\[\%z\-\,64JQ5AeH_G\#KijUKghQw\^\\vea3a\?kka_G\$8\#\`\*kynsxzBLru\'\]k_\[7FrVx\}\^\=\$blx\>s\-N\%j\;D\*aZDnsw\:YKZ\%Q\.Kne9\#hP\?\+b3\(SOvL\,\^\;\&u5\@\?5C5Bhb\=m\-vEh_L15Jl\]U\)0RP6\{q\%L\^_z5E\'Dw6X\b|IDZ |
| 3303 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 3304 | Bra 0 | Bra |
| 3305 | 8J$WE<.rX+ix[d1b!H#?vV0vrK:ZH1=2M>iV;?aPhFB<*vW@QW@sO9}cfZA-i'w%hKd6gt1UJP,15_#QY$M^Mss_U/]&LK9[5vQub^w[KDD<EjmhUZ?.akp2dF>qmj;2}YWFdYx.Ap]hjCPTP(n28k+3;o&WXqs/gOXdr$:r'do0;b4c(f_Gr="\4)[01T7ajQJvL$W~mL_sS/4h:x*[ZN=KLs&L5zX//>it,o:aU(;Z>pW&T7oP'2K^E:x9'c[%z-,64JQ5AeH_G#KijUKghQw^\vea3a?kka_G$8#`*kynsxzBLru']k_[7FrVx}^=$blx>s-N%j;D*aZDnsw:YKZ%Q.Kne9#hP?+b3(SOvL,^;&u5@?5C5Bhb=m-vEh_L15Jl]U)0RP6{q%L^_z5E'Dw6X | 8J$WE<.rX+ix[d1b!H#?vV0vrK:ZH1=2M>iV;?aPhFB<*vW@QW@sO9}cfZA-i'w%hKd6gt1UJP,15_#QY$M^Mss_U/]&LK9[5vQub^w[KDD<EjmhUZ?.akp2dF>qmj;2}YWFdYx.Ap]hjCPTP(n28k+3;o&WXqs/gOXdr$:r'do0;b4c(f_Gr="\4)[01T7ajQJvL$W~mL_sS/4h:x*[ZN=KLs&L5zX//>it,o:aU(;Z>pW&T7oP'2K^E:x9'c[%z-,64JQ5AeH_G#KijUKghQw^\vea3a?kka_G$8#`*kynsxzBLru']k_[7FrVx}^=$blx>s-N%j;D*aZDnsw:YKZ%Q.Kne9#hP?+b3(SOvL,^;&u5@?5C5Bhb=m-vEh_L15Jl]U)0RP6{q%L^_z5E'Dw6X |
| 3306 | \b | \b |
| 3307 | Ket | Ket |
| # | Line 3319 Need char = 'X' | Line 3314 Need char = 'X' |
| 3314 | ||
| 3315 | |\$\<\.X\+ix\[d1b\!H\#\?vV0vrK\:ZH1\=2M\>iV\;\?aPhFB\<\*vW\@QW\@sO9\}cfZA\-i\'w\%hKd6gt1UJP\,15_\#QY\$M\^Mss_U\/\]\&LK9\[5vQub\^w\[KDD\<EjmhUZ\?\.akp2dF\>qmj\;2\}YWFdYx\.Ap\]hjCPTP\(n28k\+3\;o\&WXqs\/gOXdr\$\:r\'do0\;b4c\(f_Gr\=\"\\4\)\[01T7ajQJvL\$W\~mL_sS\/4h\:x\*\[ZN\=KLs\&L5zX\/\/\>it\,o\:aU\(\;Z\>pW\&T7oP\'2K\^E\:x9\'c\[\%z\-\,64JQ5AeH_G\#KijUKghQw\^\\vea3a\?kka_G\$8\#\`\*kynsxzBLru\'\]k_\[7FrVx\}\^\=\$blx\>s\-N\%j\;D\*aZDnsw\:YKZ\%Q\.Kne9\#hP\?\+b3\(SOvL\,\^\;\&u5\@\?5C5Bhb\=m\-vEh_L15Jl\]U\)0RP6\{q\%L\^_z5E\'Dw6X\b|IDZ | |\$\<\.X\+ix\[d1b\!H\#\?vV0vrK\:ZH1\=2M\>iV\;\?aPhFB\<\*vW\@QW\@sO9\}cfZA\-i\'w\%hKd6gt1UJP\,15_\#QY\$M\^Mss_U\/\]\&LK9\[5vQub\^w\[KDD\<EjmhUZ\?\.akp2dF\>qmj\;2\}YWFdYx\.Ap\]hjCPTP\(n28k\+3\;o\&WXqs\/gOXdr\$\:r\'do0\;b4c\(f_Gr\=\"\\4\)\[01T7ajQJvL\$W\~mL_sS\/4h\:x\*\[ZN\=KLs\&L5zX\/\/\>it\,o\:aU\(\;Z\>pW\&T7oP\'2K\^E\:x9\'c\[\%z\-\,64JQ5AeH_G\#KijUKghQw\^\\vea3a\?kka_G\$8\#\`\*kynsxzBLru\'\]k_\[7FrVx\}\^\=\$blx\>s\-N\%j\;D\*aZDnsw\:YKZ\%Q\.Kne9\#hP\?\+b3\(SOvL\,\^\;\&u5\@\?5C5Bhb\=m\-vEh_L15Jl\]U\)0RP6\{q\%L\^_z5E\'Dw6X\b|IDZ |
| 3316 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 3317 | Bra 0 | Bra |
| 3318 | $<.X+ix[d1b!H#?vV0vrK:ZH1=2M>iV;?aPhFB<*vW@QW@sO9}cfZA-i'w%hKd6gt1UJP,15_#QY$M^Mss_U/]&LK9[5vQub^w[KDD<EjmhUZ?.akp2dF>qmj;2}YWFdYx.Ap]hjCPTP(n28k+3;o&WXqs/gOXdr$:r'do0;b4c(f_Gr="\4)[01T7ajQJvL$W~mL_sS/4h:x*[ZN=KLs&L5zX//>it,o:aU(;Z>pW&T7oP'2K^E:x9'c[%z-,64JQ5AeH_G#KijUKghQw^\vea3a?kka_G$8#`*kynsxzBLru']k_[7FrVx}^=$blx>s-N%j;D*aZDnsw:YKZ%Q.Kne9#hP?+b3(SOvL,^;&u5@?5C5Bhb=m-vEh_L15Jl]U)0RP6{q%L^_z5E'Dw6X | $<.X+ix[d1b!H#?vV0vrK:ZH1=2M>iV;?aPhFB<*vW@QW@sO9}cfZA-i'w%hKd6gt1UJP,15_#QY$M^Mss_U/]&LK9[5vQub^w[KDD<EjmhUZ?.akp2dF>qmj;2}YWFdYx.Ap]hjCPTP(n28k+3;o&WXqs/gOXdr$:r'do0;b4c(f_Gr="\4)[01T7ajQJvL$W~mL_sS/4h:x*[ZN=KLs&L5zX//>it,o:aU(;Z>pW&T7oP'2K^E:x9'c[%z-,64JQ5AeH_G#KijUKghQw^\vea3a?kka_G$8#`*kynsxzBLru']k_[7FrVx}^=$blx>s-N%j;D*aZDnsw:YKZ%Q.Kne9#hP?+b3(SOvL,^;&u5@?5C5Bhb=m-vEh_L15Jl]U)0RP6{q%L^_z5E'Dw6X |
| 3319 | \b | \b |
| 3320 | Ket | Ket |
| # | Line 3333 Need char = 'X' | Line 3328 Need char = 'X' |
| 3328 | /(.*)\d+\1/I | /(.*)\d+\1/I |
| 3329 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| 3330 | Max back reference = 1 | Max back reference = 1 |
| Partial matching not supported | ||
| 3331 | No options | No options |
| 3332 | No first char | No first char |
| 3333 | No need char | No need char |
| 3334 | ||
| 3335 | /(.*)\d+/I | /(.*)\d+/I |
| 3336 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 3337 | No options | No options |
| 3338 | First char at start or follows newline | First char at start or follows newline |
| 3339 | No need char | No need char |
| # | Line 3348 No need char | Line 3341 No need char |
| 3341 | /(.*)\d+\1/Is | /(.*)\d+\1/Is |
| 3342 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| 3343 | Max back reference = 1 | Max back reference = 1 |
| Partial matching not supported | ||
| 3344 | Options: dotall | Options: dotall |
| 3345 | No first char | No first char |
| 3346 | No need char | No need char |
| 3347 | ||
| 3348 | /(.*)\d+/Is | /(.*)\d+/Is |
| 3349 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 3350 | Options: anchored dotall | Options: anchored dotall |
| 3351 | No first char | No first char |
| 3352 | No need char | No need char |
| # | Line 3363 No need char | Line 3354 No need char |
| 3354 | /(.*(xyz))\d+\2/I | /(.*(xyz))\d+\2/I |
| 3355 | Capturing subpattern count = 2 | Capturing subpattern count = 2 |
| 3356 | Max back reference = 2 | Max back reference = 2 |
| Partial matching not supported | ||
| 3357 | No options | No options |
| 3358 | First char at start or follows newline | First char at start or follows newline |
| 3359 | Need char = 'z' | Need char = 'z' |
| # | Line 3371 Need char = 'z' | Line 3361 Need char = 'z' |
| 3361 | /((.*))\d+\1/I | /((.*))\d+\1/I |
| 3362 | Capturing subpattern count = 2 | Capturing subpattern count = 2 |
| 3363 | Max back reference = 1 | Max back reference = 1 |
| Partial matching not supported | ||
| 3364 | No options | No options |
| 3365 | No first char | No first char |
| 3366 | No need char | No need char |
| # | Line 3388 Need char = 'b' | Line 3377 Need char = 'b' |
| 3377 | ||
| 3378 | /(?=a).*/I | /(?=a).*/I |
| 3379 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 3380 | No options | No options |
| 3381 | First char = 'a' | First char = 'a' |
| 3382 | No need char | No need char |
| # | Line 3435 No options | Line 3423 No options |
| 3423 | No first char | No first char |
| 3424 | Need char = 'a' | Need char = 'a' |
| 3425 | ||
| 3426 | /(?(1)ab|ac)/I | /(?(1)ab|ac)(.)/I |
| 3427 | Capturing subpattern count = 0 | Capturing subpattern count = 1 |
| 3428 | No options | No options |
| 3429 | First char = 'a' | First char = 'a' |
| 3430 | No need char | No need char |
| 3431 | ||
| 3432 | /(?(1)abz|acz)/I | /(?(1)abz|acz)(.)/I |
| 3433 | Capturing subpattern count = 0 | Capturing subpattern count = 1 |
| 3434 | No options | No options |
| 3435 | First char = 'a' | First char = 'a' |
| 3436 | Need char = 'z' | Need char = 'z' |
| 3437 | ||
| 3438 | /(?(1)abz)/I | /(?(1)abz)(.)/I |
| 3439 | Capturing subpattern count = 0 | Capturing subpattern count = 1 |
| 3440 | No options | No options |
| 3441 | No first char | No first char |
| 3442 | No need char | No need char |
| 3443 | ||
| 3444 | /(?(1)abz)123/I | /(?(1)abz)(1)23/I |
| 3445 | Capturing subpattern count = 0 | Capturing subpattern count = 1 |
| 3446 | No options | No options |
| 3447 | No first char | No first char |
| 3448 | Need char = '3' | Need char = '3' |
| # | Line 3494 Capturing subpattern count = 0 | Line 3482 Capturing subpattern count = 0 |
| 3482 | No options | No options |
| 3483 | No first char | No first char |
| 3484 | No need char | No need char |
| 3485 | Subject length lower bound = 1 | |
| 3486 | Starting byte set: a b | Starting byte set: a b |
| 3487 | ||
| 3488 | /[^a]/I | /[^a]/I |
| # | Line 3513 Capturing subpattern count = 0 | Line 3502 Capturing subpattern count = 0 |
| 3502 | No options | No options |
| 3503 | No first char | No first char |
| 3504 | Need char = '6' | Need char = '6' |
| 3505 | Subject length lower bound = 4 | |
| 3506 | Starting byte set: 0 1 2 3 4 5 6 7 8 9 | Starting byte set: 0 1 2 3 4 5 6 7 8 9 |
| 3507 | ||
| 3508 | /a^b/I | /a^b/I |
| # | Line 3546 Capturing subpattern count = 0 | Line 3536 Capturing subpattern count = 0 |
| 3536 | Options: caseless | Options: caseless |
| 3537 | No first char | No first char |
| 3538 | No need char | No need char |
| 3539 | Subject length lower bound = 1 | |
| 3540 | Starting byte set: A B a b | Starting byte set: A B a b |
| 3541 | ||
| 3542 | /[ab](?i)cd/IS | /[ab](?i)cd/IS |
| # | Line 3553 Capturing subpattern count = 0 | Line 3544 Capturing subpattern count = 0 |
| 3544 | No options | No options |
| 3545 | No first char | No first char |
| 3546 | Need char = 'd' (caseless) | Need char = 'd' (caseless) |
| 3547 | Subject length lower bound = 3 | |
| 3548 | Starting byte set: a b | Starting byte set: a b |
| 3549 | ||
| 3550 | /abc(?C)def/I | /abc(?C)def/I |
| # | Line 3588 Need char = 'f' | Line 3580 Need char = 'f' |
| 3580 | 1 ^ ^ f | 1 ^ ^ f |
| 3581 | 0: abcdef | 0: abcdef |
| 3582 | ||
| 3583 | /(?C1)\dabc(?C2)def/I | /(?C1)\dabc(?C2)def/IS |
| 3584 | Capturing subpattern count = 0 | |
| 3585 | No options | |
| 3586 | No first char | |
| 3587 | Need char = 'f' | |
| 3588 | Subject length lower bound = 7 | |
| 3589 | Starting byte set: 0 1 2 3 4 5 6 7 8 9 | |
| 3590 | 1234abcdef | |
| 3591 | --->1234abcdef | |
| 3592 | 1 ^ \d | |
| 3593 | 1 ^ \d | |
| 3594 | 1 ^ \d | |
| 3595 | 1 ^ \d | |
| 3596 | 2 ^ ^ d | |
| 3597 | 0: 4abcdef | |
| 3598 | *** Failers | |
| 3599 | No match | |
| 3600 | abcdef | |
| 3601 | No match | |
| 3602 | ||
| 3603 | /(?C1)\dabc(?C2)def/ISS | |
| 3604 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| 3605 | No options | No options |
| 3606 | No first char | No first char |
| # | Line 3710 No need char | Line 3722 No need char |
| 3722 | ||
| 3723 | /(\d{3}(?C))*/I | /(\d{3}(?C))*/I |
| 3724 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 3725 | No options | No options |
| 3726 | No first char | No first char |
| 3727 | No need char | No need char |
| # | Line 3839 Callout 0: last capture = 1 | Line 3850 Callout 0: last capture = 1 |
| 3850 | ||
| 3851 | /a(b+)(c*)(?C1)/I | /a(b+)(c*)(?C1)/I |
| 3852 | Capturing subpattern count = 2 | Capturing subpattern count = 2 |
| Partial matching not supported | ||
| 3853 | No options | No options |
| 3854 | First char = 'a' | First char = 'a' |
| 3855 | Need char = 'b' | Need char = 'b' |
| # | Line 3865 No match | Line 3875 No match |
| 3875 | ||
| 3876 | /a(b+?)(c*?)(?C1)/I | /a(b+?)(c*?)(?C1)/I |
| 3877 | Capturing subpattern count = 2 | Capturing subpattern count = 2 |
| Partial matching not supported | ||
| 3878 | No options | No options |
| 3879 | First char = 'a' | First char = 'a' |
| 3880 | Need char = 'b' | Need char = 'b' |
| # | Line 3906 Capturing subpattern count = 0 | Line 3915 Capturing subpattern count = 0 |
| 3915 | No options | No options |
| 3916 | No first char | No first char |
| 3917 | No need char | No need char |
| 3918 | Subject length lower bound = 1 | |
| 3919 | Starting byte set: a b | Starting byte set: a b |
| 3920 | ||
| 3921 | /(?R)/I | /(?R)/I |
| # | Line 3991 Need char = '<' | Line 4001 Need char = '<' |
| 4001 | ||
| 4002 | /(a(?1)b)/DZ | /(a(?1)b)/DZ |
| 4003 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4004 | Bra 0 | Bra |
| 4005 | Bra 1 | CBra 1 |
| 4006 | a | a |
| Once | ||
| 4007 | Recurse | Recurse |
| Ket | ||
| 4008 | b | b |
| 4009 | Ket | Ket |
| 4010 | Ket | Ket |
| # | Line 4009 Need char = 'b' | Line 4017 Need char = 'b' |
| 4017 | ||
| 4018 | /(a(?1)+b)/DZ | /(a(?1)+b)/DZ |
| 4019 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4020 | Bra 0 | Bra |
| 4021 | Bra 1 | CBra 1 |
| 4022 | a | a |
| 4023 | Once | Once |
| 4024 | Recurse | Recurse |
| # | Line 4025 No options | Line 4033 No options |
| 4033 | First char = 'a' | First char = 'a' |
| 4034 | Need char = 'b' | Need char = 'b' |
| 4035 | ||
| /^\W*(?:((.)\W*(?1)\W*\2|)|((.)\W*(?3)\W*\4|\W*.\W*))\W*$/Ii | ||
| Capturing subpattern count = 4 | ||
| Max back reference = 4 | ||
| Partial matching not supported | ||
| Options: anchored caseless | ||
| No first char | ||
| No need char | ||
| 1221 | ||
| 0: 1221 | ||
| 1: 1221 | ||
| 2: 1 | ||
| Satan, oscillate my metallic sonatas! | ||
| 0: Satan, oscillate my metallic sonatas! | ||
| 1: <unset> | ||
| 2: <unset> | ||
| 3: Satan, oscillate my metallic sonatas | ||
| 4: S | ||
| A man, a plan, a canal: Panama! | ||
| 0: A man, a plan, a canal: Panama! | ||
| 1: <unset> | ||
| 2: <unset> | ||
| 3: A man, a plan, a canal: Panama | ||
| 4: A | ||
| Able was I ere I saw Elba. | ||
| 0: Able was I ere I saw Elba. | ||
| 1: <unset> | ||
| 2: <unset> | ||
| 3: Able was I ere I saw Elba | ||
| 4: A | ||
| *** Failers | ||
| No match | ||
| The quick brown fox | ||
| No match | ||
| 4036 | /^(\d+|\((?1)([+*-])(?1)\)|-(?1))$/I | /^(\d+|\((?1)([+*-])(?1)\)|-(?1))$/I |
| 4037 | Capturing subpattern count = 2 | Capturing subpattern count = 2 |
| Partial matching not supported | ||
| 4038 | Options: anchored | Options: anchored |
| 4039 | No first char | No first char |
| 4040 | No need char | No need char |
| # | Line 4102 No match | Line 4075 No match |
| 4075 | ||
| 4076 | /((< (?: (?(R) \d++ | [^<>]*+) | (?2)) * >))/Ix | /((< (?: (?(R) \d++ | [^<>]*+) | (?2)) * >))/Ix |
| 4077 | Capturing subpattern count = 2 | Capturing subpattern count = 2 |
| Partial matching not supported | ||
| 4078 | Options: extended | Options: extended |
| 4079 | First char = '<' | First char = '<' |
| 4080 | Need char = '>' | Need char = '>' |
| # | Line 4185 No need char | Line 4157 No need char |
| 4157 | ||
| 4158 | /a(?P<name1>b|c)d(?P<longername2>e)/DZ | /a(?P<name1>b|c)d(?P<longername2>e)/DZ |
| 4159 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4160 | Bra 0 | Bra |
| 4161 | a | a |
| 4162 | Bra 1 | CBra 1 |
| 4163 | b | b |
| 4164 | Alt | Alt |
| 4165 | c | c |
| 4166 | Ket | Ket |
| 4167 | d | d |
| 4168 | Bra 2 | CBra 2 |
| 4169 | e | e |
| 4170 | Ket | Ket |
| 4171 | Ket | Ket |
| # | Line 4217 Need char = 'e' | Line 4189 Need char = 'e' |
| 4189 | ||
| 4190 | /(?:a(?P<c>c(?P<d>d)))(?P<a>a)/DZ | /(?:a(?P<c>c(?P<d>d)))(?P<a>a)/DZ |
| 4191 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4192 | Bra 0 | Bra |
| 4193 | Bra 0 | Bra |
| 4194 | a | a |
| 4195 | Bra 1 | CBra 1 |
| 4196 | c | c |
| 4197 | Bra 2 | CBra 2 |
| 4198 | d | d |
| 4199 | Ket | Ket |
| 4200 | Ket | Ket |
| 4201 | Ket | Ket |
| 4202 | Bra 3 | CBra 3 |
| 4203 | a | a |
| 4204 | Ket | Ket |
| 4205 | Ket | Ket |
| # | Line 4244 Need char = 'a' | Line 4216 Need char = 'a' |
| 4216 | ||
| 4217 | /(?P<a>a)...(?P=a)bbb(?P>a)d/DZ | /(?P<a>a)...(?P=a)bbb(?P>a)d/DZ |
| 4218 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4219 | Bra 0 | Bra |
| 4220 | Bra 1 | CBra 1 |
| 4221 | a | a |
| 4222 | Ket | Ket |
| 4223 | Any | Any |
| # | Line 4253 Need char = 'a' | Line 4225 Need char = 'a' |
| 4225 | Any | Any |
| 4226 | \1 | \1 |
| 4227 | bbb | bbb |
| Once | ||
| 4228 | Recurse | Recurse |
| Ket | ||
| 4229 | d | d |
| 4230 | Ket | Ket |
| 4231 | End | End |
| # | Line 4276 Named capturing subpatterns: | Line 4246 Named capturing subpatterns: |
| 4246 | one 1 | one 1 |
| 4247 | three 3 | three 3 |
| 4248 | two 2 | two 2 |
| Partial matching not supported | ||
| 4249 | Options: anchored caseless | Options: anchored caseless |
| 4250 | No first char | No first char |
| 4251 | No need char | No need char |
| # | Line 4322 No need char | Line 4291 No need char |
| 4291 | ||
| 4292 | /(.*)a/Is | /(.*)a/Is |
| 4293 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 4294 | Options: anchored dotall | Options: anchored dotall |
| 4295 | No first char | No first char |
| 4296 | Need char = 'a' | Need char = 'a' |
| # | Line 4330 Need char = 'a' | Line 4298 Need char = 'a' |
| 4298 | /(.*)a\1/Is | /(.*)a\1/Is |
| 4299 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| 4300 | Max back reference = 1 | Max back reference = 1 |
| Partial matching not supported | ||
| 4301 | Options: dotall | Options: dotall |
| 4302 | No first char | No first char |
| 4303 | Need char = 'a' | Need char = 'a' |
| # | Line 4338 Need char = 'a' | Line 4305 Need char = 'a' |
| 4305 | /(.*)a(b)\2/Is | /(.*)a(b)\2/Is |
| 4306 | Capturing subpattern count = 2 | Capturing subpattern count = 2 |
| 4307 | Max back reference = 2 | Max back reference = 2 |
| Partial matching not supported | ||
| 4308 | Options: anchored dotall | Options: anchored dotall |
| 4309 | No first char | No first char |
| 4310 | Need char = 'b' | Need char = 'b' |
| 4311 | ||
| 4312 | /((.*)a|(.*)b)z/Is | /((.*)a|(.*)b)z/Is |
| 4313 | Capturing subpattern count = 3 | Capturing subpattern count = 3 |
| Partial matching not supported | ||
| 4314 | Options: anchored dotall | Options: anchored dotall |
| 4315 | No first char | No first char |
| 4316 | Need char = 'z' | Need char = 'z' |
| # | Line 4353 Need char = 'z' | Line 4318 Need char = 'z' |
| 4318 | /((.*)a|(.*)b)z\1/Is | /((.*)a|(.*)b)z\1/Is |
| 4319 | Capturing subpattern count = 3 | Capturing subpattern count = 3 |
| 4320 | Max back reference = 1 | Max back reference = 1 |
| Partial matching not supported | ||
| 4321 | Options: dotall | Options: dotall |
| 4322 | No first char | No first char |
| 4323 | Need char = 'z' | Need char = 'z' |
| # | Line 4361 Need char = 'z' | Line 4325 Need char = 'z' |
| 4325 | /((.*)a|(.*)b)z\2/Is | /((.*)a|(.*)b)z\2/Is |
| 4326 | Capturing subpattern count = 3 | Capturing subpattern count = 3 |
| 4327 | Max back reference = 2 | Max back reference = 2 |
| Partial matching not supported | ||
| 4328 | Options: dotall | Options: dotall |
| 4329 | No first char | No first char |
| 4330 | Need char = 'z' | Need char = 'z' |
| # | Line 4369 Need char = 'z' | Line 4332 Need char = 'z' |
| 4332 | /((.*)a|(.*)b)z\3/Is | /((.*)a|(.*)b)z\3/Is |
| 4333 | Capturing subpattern count = 3 | Capturing subpattern count = 3 |
| 4334 | Max back reference = 3 | Max back reference = 3 |
| Partial matching not supported | ||
| 4335 | Options: dotall | Options: dotall |
| 4336 | No first char | No first char |
| 4337 | Need char = 'z' | Need char = 'z' |
| # | Line 4377 Need char = 'z' | Line 4339 Need char = 'z' |
| 4339 | /((.*)a|^(.*)b)z\3/Is | /((.*)a|^(.*)b)z\3/Is |
| 4340 | Capturing subpattern count = 3 | Capturing subpattern count = 3 |
| 4341 | Max back reference = 3 | Max back reference = 3 |
| Partial matching not supported | ||
| 4342 | Options: anchored dotall | Options: anchored dotall |
| 4343 | No first char | No first char |
| 4344 | Need char = 'z' | Need char = 'z' |
| 4345 | ||
| 4346 | /(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)a/Is | /(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)a/Is |
| 4347 | Capturing subpattern count = 31 | Capturing subpattern count = 31 |
| Partial matching not supported | ||
| 4348 | Options: anchored dotall | Options: anchored dotall |
| 4349 | No first char | No first char |
| 4350 | No need char | No need char |
| # | Line 4392 No need char | Line 4352 No need char |
| 4352 | /(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)a\31/Is | /(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)a\31/Is |
| 4353 | Capturing subpattern count = 31 | Capturing subpattern count = 31 |
| 4354 | Max back reference = 31 | Max back reference = 31 |
| Partial matching not supported | ||
| 4355 | Options: dotall | Options: dotall |
| 4356 | No first char | No first char |
| 4357 | No need char | No need char |
| # | Line 4400 No need char | Line 4359 No need char |
| 4359 | /(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)a\32/Is | /(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)|(.*)a\32/Is |
| 4360 | Capturing subpattern count = 32 | Capturing subpattern count = 32 |
| 4361 | Max back reference = 32 | Max back reference = 32 |
| Partial matching not supported | ||
| 4362 | Options: dotall | Options: dotall |
| 4363 | No first char | No first char |
| 4364 | No need char | No need char |
| 4365 | ||
| 4366 | /(a)(bc)/INDZ | /(a)(bc)/INDZ |
| 4367 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4368 | Bra 0 | Bra |
| 4369 | Bra 0 | Bra |
| 4370 | a | a |
| 4371 | Ket | Ket |
| 4372 | Bra 0 | Bra |
| 4373 | bc | bc |
| 4374 | Ket | Ket |
| 4375 | Ket | Ket |
| # | Line 4426 Need char = 'c' | Line 4384 Need char = 'c' |
| 4384 | ||
| 4385 | /(?P<one>a)(bc)/INDZ | /(?P<one>a)(bc)/INDZ |
| 4386 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4387 | Bra 0 | Bra |
| 4388 | Bra 1 | CBra 1 |
| 4389 | a | a |
| 4390 | Ket | Ket |
| 4391 | Bra 0 | Bra |
| 4392 | bc | bc |
| 4393 | Ket | Ket |
| 4394 | Ket | Ket |
| # | Line 4448 Need char = 'c' | Line 4406 Need char = 'c' |
| 4406 | ||
| 4407 | /(a)(?P<named>bc)/INDZ | /(a)(?P<named>bc)/INDZ |
| 4408 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4409 | Bra 0 | Bra |
| 4410 | Bra 0 | Bra |
| 4411 | a | a |
| 4412 | Ket | Ket |
| 4413 | Bra 1 | CBra 1 |
| 4414 | bc | bc |
| 4415 | Ket | Ket |
| 4416 | Ket | Ket |
| # | Line 4467 Need char = 'c' | Line 4425 Need char = 'c' |
| 4425 | ||
| 4426 | /(a+)*zz/I | /(a+)*zz/I |
| 4427 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 4428 | No options | No options |
| 4429 | No first char | No first char |
| 4430 | Need char = 'z' | Need char = 'z' |
| # | Line 4541 copy substring three failed -7 | Line 4498 copy substring three failed -7 |
| 4498 | ||
| 4499 | /(?P<Tes>)(?P<Test>)/DZ | /(?P<Tes>)(?P<Test>)/DZ |
| 4500 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4501 | Bra 0 | Bra |
| 4502 | Bra 1 | CBra 1 |
| 4503 | Ket | Ket |
| 4504 | Bra 2 | CBra 2 |
| 4505 | Ket | Ket |
| 4506 | Ket | Ket |
| 4507 | End | End |
| # | Line 4559 No need char | Line 4516 No need char |
| 4516 | ||
| 4517 | /(?P<Test>)(?P<Tes>)/DZ | /(?P<Test>)(?P<Tes>)/DZ |
| 4518 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4519 | Bra 0 | Bra |
| 4520 | Bra 1 | CBra 1 |
| 4521 | Ket | Ket |
| 4522 | Bra 2 | CBra 2 |
| 4523 | Ket | Ket |
| 4524 | Ket | Ket |
| 4525 | End | End |
| # | Line 4604 Failed: two named subpatterns have the s | Line 4561 Failed: two named subpatterns have the s |
| 4561 | Capturing subpattern count = 3 | Capturing subpattern count = 3 |
| 4562 | Named capturing subpatterns: | Named capturing subpatterns: |
| 4563 | elem 2 | elem 2 |
| Partial matching not supported | ||
| 4564 | No options | No options |
| 4565 | First char = '[' | First char = '[' |
| 4566 | Need char = ']' | Need char = ']' |
| # | Line 4622 No match | Line 4578 No match |
| 4578 | Capturing subpattern count = 3 | Capturing subpattern count = 3 |
| 4579 | Named capturing subpatterns: | Named capturing subpatterns: |
| 4580 | elem 2 | elem 2 |
| Partial matching not supported | ||
| 4581 | No options | No options |
| 4582 | First char = '[' | First char = '[' |
| 4583 | Need char = ']' | Need char = ']' |
| # | Line 4636 Need char = ']' | Line 4591 Need char = ']' |
| 4591 | ||
| 4592 | /(a(b(?2)c))?/DZ | /(a(b(?2)c))?/DZ |
| 4593 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4594 | Bra 0 | Bra |
| 4595 | Brazero | Brazero |
| 4596 | Bra 1 | CBra 1 |
| 4597 | a | a |
| 4598 | Bra 2 | CBra 2 |
| 4599 | b | b |
| Once | ||
| 4600 | Recurse | Recurse |
| Ket | ||
| 4601 | c | c |
| 4602 | Ket | Ket |
| 4603 | Ket | Ket |
| # | Line 4658 No need char | Line 4611 No need char |
| 4611 | ||
| 4612 | /(a(b(?2)c))*/DZ | /(a(b(?2)c))*/DZ |
| 4613 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4614 | Bra 0 | Bra |
| 4615 | Brazero | Brazero |
| 4616 | Bra 1 | CBra 1 |
| 4617 | a | a |
| 4618 | Bra 2 | CBra 2 |
| 4619 | b | b |
| Once | ||
| 4620 | Recurse | Recurse |
| Ket | ||
| 4621 | c | c |
| 4622 | Ket | Ket |
| 4623 | KetRmax | KetRmax |
| # | Line 4680 No need char | Line 4631 No need char |
| 4631 | ||
| 4632 | /(a(b(?2)c)){0,2}/DZ | /(a(b(?2)c)){0,2}/DZ |
| 4633 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4634 | Bra 0 | Bra |
| 4635 | Brazero | Brazero |
| 4636 | Bra 0 | Bra |
| 4637 | Bra 1 | CBra 1 |
| 4638 | a | a |
| 4639 | Bra 2 | CBra 2 |
| 4640 | b | b |
| Once | ||
| 4641 | Recurse | Recurse |
| Ket | ||
| 4642 | c | c |
| 4643 | Ket | Ket |
| 4644 | Ket | Ket |
| 4645 | Brazero | Brazero |
| 4646 | Bra 1 | CBra 1 |
| 4647 | a | a |
| 4648 | Bra 2 | CBra 2 |
| 4649 | b | b |
| Once | ||
| 4650 | Recurse | Recurse |
| Ket | ||
| 4651 | c | c |
| 4652 | Ket | Ket |
| 4653 | Ket | Ket |
| # | Line 4715 No need char | Line 4662 No need char |
| 4662 | ||
| 4663 | /[ab]{1}+/DZ | /[ab]{1}+/DZ |
| 4664 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4665 | Bra 0 | Bra |
| 4666 | Once | Once |
| 4667 | [ab]{1,1} | [ab]{1,1} |
| 4668 | Ket | Ket |
| # | Line 4729 No need char | Line 4676 No need char |
| 4676 | ||
| 4677 | /((w\/|-|with)*(free|immediate)*.*?shipping\s*[!.-]*)/Ii | /((w\/|-|with)*(free|immediate)*.*?shipping\s*[!.-]*)/Ii |
| 4678 | Capturing subpattern count = 3 | Capturing subpattern count = 3 |
| Partial matching not supported | ||
| 4679 | Options: caseless | Options: caseless |
| 4680 | No first char | No first char |
| 4681 | Need char = 'g' (caseless) | Need char = 'g' (caseless) |
| # | Line 4739 Need char = 'g' (caseless) | Line 4685 Need char = 'g' (caseless) |
| 4685 | ||
| 4686 | /((w\/|-|with)*(free|immediate)*.*?shipping\s*[!.-]*)/IiS | /((w\/|-|with)*(free|immediate)*.*?shipping\s*[!.-]*)/IiS |
| 4687 | Capturing subpattern count = 3 | Capturing subpattern count = 3 |
| Partial matching not supported | ||
| 4688 | Options: caseless | Options: caseless |
| 4689 | No first char | No first char |
| 4690 | Need char = 'g' (caseless) | Need char = 'g' (caseless) |
| 4691 | Study returned NULL | Subject length lower bound = 8 |
| 4692 | No set of starting bytes | |
| 4693 | Baby Bjorn Active Carrier - With free SHIPPING!! | Baby Bjorn Active Carrier - With free SHIPPING!! |
| 4694 | 0: Baby Bjorn Active Carrier - With free SHIPPING!! | 0: Baby Bjorn Active Carrier - With free SHIPPING!! |
| 4695 | 1: Baby Bjorn Active Carrier - With free SHIPPING!! | 1: Baby Bjorn Active Carrier - With free SHIPPING!! |
| 4696 | ||
| 4697 | /a*.*b/ISDZ | /a*.*b/ISDZ |
| 4698 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4699 | Bra 0 | Bra |
| 4700 | a* | a* |
| 4701 | Any* | Any* |
| 4702 | b | b |
| # | Line 4758 Study returned NULL | Line 4704 Study returned NULL |
| 4704 | End | End |
| 4705 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4706 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 4707 | No options | No options |
| 4708 | No first char | No first char |
| 4709 | Need char = 'b' | Need char = 'b' |
| 4710 | Study returned NULL | Subject length lower bound = 1 |
| 4711 | No set of starting bytes | |
| 4712 | ||
| 4713 | /(a|b)*.?c/ISDZ | /(a|b)*.?c/ISDZ |
| 4714 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4715 | Bra 0 | Bra |
| 4716 | Brazero | Brazero |
| 4717 | Bra 1 | CBra 1 |
| 4718 | a | a |
| 4719 | Alt | Alt |
| 4720 | b | b |
| # | Line 4782 Capturing subpattern count = 1 | Line 4728 Capturing subpattern count = 1 |
| 4728 | No options | No options |
| 4729 | No first char | No first char |
| 4730 | Need char = 'c' | Need char = 'c' |
| 4731 | Study returned NULL | Subject length lower bound = 1 |
| 4732 | No set of starting bytes | |
| 4733 | ||
| 4734 | /abc(?C255)de(?C)f/DZ | /abc(?C255)de(?C)f/DZ |
| 4735 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4736 | Bra 0 | Bra |
| 4737 | abc | abc |
| 4738 | Callout 255 10 1 | Callout 255 10 1 |
| 4739 | de | de |
| # | Line 4802 Need char = 'f' | Line 4749 Need char = 'f' |
| 4749 | ||
| 4750 | /abcde/ICDZ | /abcde/ICDZ |
| 4751 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4752 | Bra 0 | Bra |
| 4753 | Callout 255 0 1 | Callout 255 0 1 |
| 4754 | a | a |
| 4755 | Callout 255 1 1 | Callout 255 1 1 |
| # | Line 4839 Need char = 'e' | Line 4786 Need char = 'e' |
| 4786 | +4 ^ ^ e | +4 ^ ^ e |
| 4787 | No match | No match |
| 4788 | ||
| 4789 | /a*b/ICDZ | /a*b/ICDZS |
| 4790 | ------------------------------------------------------------------ | |
| 4791 | Bra | |
| 4792 | Callout 255 0 2 | |
| 4793 | a*+ | |
| 4794 | Callout 255 2 1 | |
| 4795 | b | |
| 4796 | Callout 255 3 0 | |
| 4797 | Ket | |
| 4798 | End | |
| 4799 | ------------------------------------------------------------------ | |
| 4800 | Capturing subpattern count = 0 | |
| 4801 | Options: | |
| 4802 | No first char | |
| 4803 | Need char = 'b' | |
| 4804 | Subject length lower bound = 1 | |
| 4805 | Starting byte set: a b | |
| 4806 | ab | |
| 4807 | --->ab | |
| 4808 | +0 ^ a* | |
| 4809 | +2 ^^ b | |
| 4810 | +3 ^ ^ | |
| 4811 | 0: ab | |
| 4812 | aaaab | |
| 4813 | --->aaaab | |
| 4814 | +0 ^ a* | |
| 4815 | +2 ^ ^ b | |
| 4816 | +3 ^ ^ | |
| 4817 | 0: aaaab | |
| 4818 | aaaacb | |
| 4819 | --->aaaacb | |
| 4820 | +0 ^ a* | |
| 4821 | +2 ^ ^ b | |
| 4822 | +0 ^ a* | |
| 4823 | +2 ^ ^ b | |
| 4824 | +0 ^ a* | |
| 4825 | +2 ^ ^ b | |
| 4826 | +0 ^ a* | |
| 4827 | +2 ^^ b | |
| 4828 | +0 ^ a* | |
| 4829 | +2 ^ b | |
| 4830 | +3 ^^ | |
| 4831 | 0: b | |
| 4832 | ||
| 4833 | /a*b/ICDZSS | |
| 4834 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4835 | Bra 0 | Bra |
| 4836 | Callout 255 0 2 | Callout 255 0 2 |
| 4837 | a*+ | a*+ |
| 4838 | Callout 255 2 1 | Callout 255 2 1 |
| # | Line 4851 No match | Line 4842 No match |
| 4842 | End | End |
| 4843 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4844 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 4845 | Options: | Options: |
| 4846 | No first char | No first char |
| 4847 | Need char = 'b' | Need char = 'b' |
| # | Line 4886 Need char = 'b' | Line 4876 Need char = 'b' |
| 4876 | ||
| 4877 | /a+b/ICDZ | /a+b/ICDZ |
| 4878 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4879 | Bra 0 | Bra |
| 4880 | Callout 255 0 2 | Callout 255 0 2 |
| 4881 | a++ | a++ |
| 4882 | Callout 255 2 1 | Callout 255 2 1 |
| # | Line 4896 Need char = 'b' | Line 4886 Need char = 'b' |
| 4886 | End | End |
| 4887 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4888 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 4889 | Options: | Options: |
| 4890 | First char = 'a' | First char = 'a' |
| 4891 | Need char = 'b' | Need char = 'b' |
| # | Line 4924 Need char = 'b' | Line 4913 Need char = 'b' |
| 4913 | +2 ^^ b | +2 ^^ b |
| 4914 | No match | No match |
| 4915 | ||
| 4916 | /(abc|def)x/ICDZ | /(abc|def)x/ICDZS |
| 4917 | ------------------------------------------------------------------ | |
| 4918 | Bra | |
| 4919 | Callout 255 0 9 | |
| 4920 | CBra 1 | |
| 4921 | Callout 255 1 1 | |
| 4922 | a | |
| 4923 | Callout 255 2 1 | |
| 4924 | b | |
| 4925 | Callout 255 3 1 | |
| 4926 | c | |
| 4927 | Callout 255 4 0 | |
| 4928 | Alt | |
| 4929 | Callout 255 5 1 | |
| 4930 | d | |
| 4931 | Callout 255 6 1 | |
| 4932 | e | |
| 4933 | Callout 255 7 1 | |
| 4934 | f | |
| 4935 | Callout 255 8 0 | |
| 4936 | Ket | |
| 4937 | Callout 255 9 1 | |
| 4938 | x | |
| 4939 | Callout 255 10 0 | |
| 4940 | Ket | |
| 4941 | End | |
| 4942 | ------------------------------------------------------------------ | |
| 4943 | Capturing subpattern count = 1 | |
| 4944 | Options: | |
| 4945 | No first char | |
| 4946 | Need char = 'x' | |
| 4947 | Subject length lower bound = 4 | |
| 4948 | Starting byte set: a d | |
| 4949 | abcx | |
| 4950 | --->abcx | |
| 4951 | +0 ^ (abc|def) | |
| 4952 | +1 ^ a | |
| 4953 | +2 ^^ b | |
| 4954 | +3 ^ ^ c | |
| 4955 | +4 ^ ^ | | |
| 4956 | +9 ^ ^ x | |
| 4957 | +10 ^ ^ | |
| 4958 | 0: abcx | |
| 4959 | 1: abc | |
| 4960 | defx | |
| 4961 | --->defx | |
| 4962 | +0 ^ (abc|def) | |
| 4963 | +1 ^ a | |
| 4964 | +5 ^ d | |
| 4965 | +6 ^^ e | |
| 4966 | +7 ^ ^ f | |
| 4967 | +8 ^ ^ ) | |
| 4968 | +9 ^ ^ x | |
| 4969 | +10 ^ ^ | |
| 4970 | 0: defx | |
| 4971 | 1: def | |
| 4972 | ** Failers | |
| 4973 | No match | |
| 4974 | abcdefzx | |
| 4975 | --->abcdefzx | |
| 4976 | +0 ^ (abc|def) | |
| 4977 | +1 ^ a | |
| 4978 | +2 ^^ b | |
| 4979 | +3 ^ ^ c | |
| 4980 | +4 ^ ^ | | |
| 4981 | +9 ^ ^ x | |
| 4982 | +5 ^ d | |
| 4983 | +0 ^ (abc|def) | |
| 4984 | +1 ^ a | |
| 4985 | +5 ^ d | |
| 4986 | +6 ^^ e | |
| 4987 | +7 ^ ^ f | |
| 4988 | +8 ^ ^ ) | |
| 4989 | +9 ^ ^ x | |
| 4990 | No match | |
| 4991 | ||
| 4992 | /(abc|def)x/ICDZSS | |
| 4993 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 4994 | Bra 0 | Bra |
| 4995 | Callout 255 0 9 | Callout 255 0 9 |
| 4996 | Bra 1 | CBra 1 |
| 4997 | Callout 255 1 1 | Callout 255 1 1 |
| 4998 | a | a |
| 4999 | Callout 255 2 1 | Callout 255 2 1 |
| # | Line 4978 Need char = 'x' | Line 5043 Need char = 'x' |
| 5043 | +10 ^ ^ | +10 ^ ^ |
| 5044 | 0: defx | 0: defx |
| 5045 | 1: def | 1: def |
| 5046 | ** Failers | |
| 5047 | No match | |
| 5048 | abcdefzx | abcdefzx |
| 5049 | --->abcdefzx | --->abcdefzx |
| 5050 | +0 ^ (abc|def) | +0 ^ (abc|def) |
| # | Line 5078 No need char | Line 5145 No need char |
| 5145 | 0: abcdcdcd | 0: abcdcdcd |
| 5146 | 1: cd | 1: cd |
| 5147 | ||
| 5148 | /([ab]{,4}c|xy)/ICDZ | /([ab]{,4}c|xy)/ICDZS |
| 5149 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 5150 | Bra 0 | Bra |
| 5151 | Callout 255 0 14 | Callout 255 0 14 |
| 5152 | Bra 1 | CBra 1 |
| 5153 | Callout 255 1 4 | Callout 255 1 4 |
| 5154 | [ab] | [ab] |
| 5155 | Callout 255 5 1 | Callout 255 5 1 |
| # | Line 5111 Capturing subpattern count = 1 | Line 5178 Capturing subpattern count = 1 |
| 5178 | Options: | Options: |
| 5179 | No first char | No first char |
| 5180 | No need char | No need char |
| 5181 | Subject length lower bound = 2 | |
| 5182 | Starting byte set: a b x | |
| 5183 | Note: that { does NOT introduce a quantifier | Note: that { does NOT introduce a quantifier |
| 5184 | --->Note: that { does NOT introduce a quantifier | --->Note: that { does NOT introduce a quantifier |
| 5185 | +0 ^ ([ab]{,4}c|xy) | +0 ^ ([ab]{,4}c|xy) |
| 5186 | +1 ^ [ab] | +1 ^ [ab] |
| 5187 | +11 ^ x | +5 ^^ { |
| 5188 | +0 ^ ([ab]{,4}c|xy) | +11 ^ x |
| 5189 | +1 ^ [ab] | +0 ^ ([ab]{,4}c|xy) |
| 5190 | +11 ^ x | +1 ^ [ab] |
| 5191 | +0 ^ ([ab]{,4}c|xy) | +5 ^^ { |
| 5192 | +1 ^ [ab] | +11 ^ x |
| 5193 | +11 ^ x | +0 ^ ([ab]{,4}c|xy) |
| 5194 | +1 ^ [ab] | |
| 5195 | +5 ^^ { | |
| 5196 | +11 ^ x | |
| 5197 | No match | |
| 5198 | ||
| 5199 | /([ab]{,4}c|xy)/ICDZSS | |
| 5200 | ------------------------------------------------------------------ | |
| 5201 | Bra | |
| 5202 | Callout 255 0 14 | |
| 5203 | CBra 1 | |
| 5204 | Callout 255 1 4 | |
| 5205 | [ab] | |
| 5206 | Callout 255 5 1 | |
| 5207 | { | |
| 5208 | Callout 255 6 1 | |
| 5209 | , | |
| 5210 | Callout 255 7 1 | |
| 5211 | 4 | |
| 5212 | Callout 255 8 1 | |
| 5213 | } | |
| 5214 | Callout 255 9 1 | |
| 5215 | c | |
| 5216 | Callout 255 10 0 | |
| 5217 | Alt | |
| 5218 | Callout 255 11 1 | |
| 5219 | x | |
| 5220 | Callout 255 12 1 | |
| 5221 | y | |
| 5222 | Callout 255 13 0 | |
| 5223 | Ket | |
| 5224 | Callout 255 14 0 | |
| 5225 | Ket | |
| 5226 | End | |
| 5227 | ------------------------------------------------------------------ | |
| 5228 | Capturing subpattern count = 1 | |
| 5229 | Options: | |
| 5230 | No first char | |
| 5231 | No need char | |
| 5232 | Note: that { does NOT introduce a quantifier | |
| 5233 | --->Note: that { does NOT introduce a quantifier | |
| 5234 | +0 ^ ([ab]{,4}c|xy) | |
| 5235 | +1 ^ [ab] | |
| 5236 | +11 ^ x | |
| 5237 | +0 ^ ([ab]{,4}c|xy) | |
| 5238 | +1 ^ [ab] | |
| 5239 | +11 ^ x | |
| 5240 | +0 ^ ([ab]{,4}c|xy) | |
| 5241 | +1 ^ [ab] | |
| 5242 | +11 ^ x | |
| 5243 | +0 ^ ([ab]{,4}c|xy) | +0 ^ ([ab]{,4}c|xy) |
| 5244 | +1 ^ [ab] | +1 ^ [ab] |
| 5245 | +11 ^ x | +11 ^ x |
| # | Line 5255 No match | Line 5373 No match |
| 5373 | ||
| 5374 | /([ab]{1,4}c|xy){4,5}?123/ICDZ | /([ab]{1,4}c|xy){4,5}?123/ICDZ |
| 5375 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 5376 | Bra 0 | Bra |
| 5377 | Callout 255 0 21 | Callout 255 0 21 |
| 5378 | Bra 1 | CBra 1 |
| 5379 | Callout 255 1 9 | Callout 255 1 9 |
| 5380 | [ab]{1,4} | [ab]{1,4} |
| 5381 | Callout 255 10 1 | Callout 255 10 1 |
| # | Line 5270 No match | Line 5388 No match |
| 5388 | y | y |
| 5389 | Callout 255 14 0 | Callout 255 14 0 |
| 5390 | Ket | Ket |
| 5391 | Bra 1 | CBra 1 |
| 5392 | Callout 255 1 9 | Callout 255 1 9 |
| 5393 | [ab]{1,4} | [ab]{1,4} |
| 5394 | Callout 255 10 1 | Callout 255 10 1 |
| # | Line 5283 No match | Line 5401 No match |
| 5401 | y | y |
| 5402 | Callout 255 14 0 | Callout 255 14 0 |
| 5403 | Ket | Ket |
| 5404 | Bra 1 | CBra 1 |
| 5405 | Callout 255 1 9 | Callout 255 1 9 |
| 5406 | [ab]{1,4} | [ab]{1,4} |
| 5407 | Callout 255 10 1 | Callout 255 10 1 |
| # | Line 5296 No match | Line 5414 No match |
| 5414 | y | y |
| 5415 | Callout 255 14 0 | Callout 255 14 0 |
| 5416 | Ket | Ket |
| 5417 | Bra 1 | CBra 1 |
| 5418 | Callout 255 1 9 | Callout 255 1 9 |
| 5419 | [ab]{1,4} | [ab]{1,4} |
| 5420 | Callout 255 10 1 | Callout 255 10 1 |
| # | Line 5310 No match | Line 5428 No match |
| 5428 | Callout 255 14 0 | Callout 255 14 0 |
| 5429 | Ket | Ket |
| 5430 | Braminzero | Braminzero |
| 5431 | Bra 1 | CBra 1 |
| 5432 | Callout 255 1 9 | Callout 255 1 9 |
| 5433 | [ab]{1,4} | [ab]{1,4} |
| 5434 | Callout 255 10 1 | Callout 255 10 1 |
| # | Line 5334 No match | Line 5452 No match |
| 5452 | End | End |
| 5453 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 5454 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 5455 | Options: | Options: |
| 5456 | No first char | No first char |
| 5457 | Need char = '3' | Need char = '3' |
| # | Line 5366 Need char = '3' | Line 5483 Need char = '3' |
| 5483 | ||
| 5484 | /\b.*/I | /\b.*/I |
| 5485 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 5486 | No options | No options |
| 5487 | No first char | No first char |
| 5488 | No need char | No need char |
| # | Line 5375 No need char | Line 5491 No need char |
| 5491 | ||
| 5492 | /\b.*/Is | /\b.*/Is |
| 5493 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 5494 | Options: dotall | Options: dotall |
| 5495 | No first char | No first char |
| 5496 | No need char | No need char |
| # | Line 5384 No need char | Line 5499 No need char |
| 5499 | ||
| 5500 | /(?!.bcd).*/I | /(?!.bcd).*/I |
| 5501 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 5502 | No options | No options |
| 5503 | No first char | No first char |
| 5504 | No need char | No need char |
| # | Line 5397 No options | Line 5511 No options |
| 5511 | First char = 'a' | First char = 'a' |
| 5512 | Need char = 'e' | Need char = 'e' |
| 5513 | ab\P | ab\P |
| 5514 | Partial match | Partial match: ab |
| 5515 | abc\P | abc\P |
| 5516 | Partial match | Partial match: abc |
| 5517 | abcd\P | abcd\P |
| 5518 | Partial match | Partial match: abcd |
| 5519 | abcde\P | abcde\P |
| 5520 | 0: abcde | 0: abcde |
| 5521 | the quick brown abc\P | the quick brown abc\P |
| 5522 | Partial match | Partial match: abc |
| 5523 | ** Failers\P | ** Failers\P |
| 5524 | No match | No match |
| 5525 | the quick brown abxyz fox\P | the quick brown abxyz fox\P |
| # | Line 5430 Need char = '/' | Line 5544 Need char = '/' |
| 5544 | 1: 02 | 1: 02 |
| 5545 | 2: 05 | 2: 05 |
| 5546 | 1\P | 1\P |
| 5547 | Partial match | Partial match: 1 |
| 5548 | 1/2\P | 1/2\P |
| 5549 | Partial match | Partial match: 1/2 |
| 5550 | 1/2/0\P | 1/2/0\P |
| 5551 | Partial match | Partial match: 1/2/0 |
| 5552 | 1/2/04\P | 1/2/04\P |
| 5553 | 0: 1/2/04 | 0: 1/2/04 |
| 5554 | 1: 1 | 1: 1 |
| 5555 | 2: 2 | 2: 2 |
| 5556 | 0\P | 0\P |
| 5557 | Partial match | Partial match: 0 |
| 5558 | 02/\P | 02/\P |
| 5559 | Partial match | Partial match: 02/ |
| 5560 | 02/0\P | 02/0\P |
| 5561 | Partial match | Partial match: 02/0 |
| 5562 | 02/1\P | 02/1\P |
| 5563 | Partial match | Partial match: 02/1 |
| 5564 | ** Failers\P | ** Failers\P |
| 5565 | No match | No match |
| 5566 | \P | \P |
| # | Line 5468 No match | Line 5582 No match |
| 5582 | ||
| 5583 | /0{0,2}ABC/I | /0{0,2}ABC/I |
| 5584 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 5585 | No options | No options |
| 5586 | No first char | No first char |
| 5587 | Need char = 'C' | Need char = 'C' |
| 5588 | ||
| 5589 | /\d{3,}ABC/I | /\d{3,}ABC/I |
| 5590 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 5591 | No options | No options |
| 5592 | No first char | No first char |
| 5593 | Need char = 'C' | Need char = 'C' |
| 5594 | ||
| 5595 | /\d*ABC/I | /\d*ABC/I |
| 5596 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 5597 | No options | No options |
| 5598 | No first char | No first char |
| 5599 | Need char = 'C' | Need char = 'C' |
| 5600 | ||
| 5601 | /[abc]+DE/I | /[abc]+DE/I |
| 5602 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 5603 | No options | No options |
| 5604 | No first char | No first char |
| 5605 | Need char = 'E' | Need char = 'E' |
| # | Line 5502 Need char = '3' | Line 5612 Need char = '3' |
| 5612 | 123\P | 123\P |
| 5613 | 0: 123 | 0: 123 |
| 5614 | a\P | a\P |
| 5615 | Partial match | Partial match: a |
| 5616 | b\P | b\P |
| 5617 | Partial match | Partial match: b |
| 5618 | c\P | c\P |
| 5619 | Partial match | Partial match: c |
| 5620 | c12\P | c12\P |
| 5621 | Partial match | Partial match: c12 |
| 5622 | c123\P | c123\P |
| 5623 | 0: c123 | 0: c123 |
| 5624 | ||
| # | Line 5518 Options: anchored | Line 5628 Options: anchored |
| 5628 | No first char | No first char |
| 5629 | Need char = 'X' | Need char = 'X' |
| 5630 | 1\P | 1\P |
| 5631 | Partial match | Partial match: 1 |
| 5632 | 123\P | 123\P |
| 5633 | Partial match | Partial match: 123 |
| 5634 | 123X | 123X |
| 5635 | 0: 123X | 0: 123X |
| 5636 | 1234\P | 1234\P |
| 5637 | Partial match | Partial match: 1234 |
| 5638 | 1234X | 1234X |
| 5639 | 0: 1234X | 0: 1234X |
| 5640 | 12345\P | 12345\P |
| 5641 | Partial match | Partial match: 12345 |
| 5642 | 12345X | 12345X |
| 5643 | 0: 12345X | 0: 12345X |
| 5644 | *** Failers | *** Failers |
| # | Line 5538 No match | Line 5648 No match |
| 5648 | 123456\P | 123456\P |
| 5649 | No match | No match |
| 5650 | ||
| 5651 | /abc/I>testsavedregex | /abc/IS>testsavedregex |
| 5652 | Capturing subpattern count = 0 | |
| 5653 | No options | |
| 5654 | First char = 'a' | |
| 5655 | Need char = 'c' | |
| 5656 | Subject length lower bound = 3 | |
| 5657 | No set of starting bytes | |
| 5658 | Compiled pattern written to testsavedregex | |
| 5659 | Study data written to testsavedregex | |
| 5660 | <testsavedregex | |
| 5661 | Compiled pattern loaded from testsavedregex | |
| 5662 | Study data loaded from testsavedregex | |
| 5663 | abc | |
| 5664 | 0: abc | |
| 5665 | ** Failers | |
| 5666 | No match | |
| 5667 | bca | |
| 5668 | No match | |
| 5669 | ||
| 5670 | /abc/ISS>testsavedregex | |
| 5671 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| 5672 | No options | No options |
| 5673 | First char = 'a' | First char = 'a' |
| 5674 | Need char = 'c' | Need char = 'c' |
| 5675 | Compiled regex written to testsavedregex | Compiled pattern written to testsavedregex |
| 5676 | <testsavedregex | <testsavedregex |
| 5677 | Compiled regex loaded from testsavedregex | Compiled pattern loaded from testsavedregex |
| 5678 | No study data | No study data |
| 5679 | abc | abc |
| 5680 | 0: abc | 0: abc |
| # | Line 5554 No match | Line 5683 No match |
| 5683 | bca | bca |
| 5684 | No match | No match |
| 5685 | ||
| 5686 | /abc/IF>testsavedregex | /abc/IFS>testsavedregex |
| 5687 | Capturing subpattern count = 0 | |
| 5688 | No options | |
| 5689 | First char = 'a' | |
| 5690 | Need char = 'c' | |
| 5691 | Subject length lower bound = 3 | |
| 5692 | No set of starting bytes | |
| 5693 | Compiled pattern written to testsavedregex | |
| 5694 | Study data written to testsavedregex | |
| 5695 | <testsavedregex | |
| 5696 | Compiled pattern (byte-inverted) loaded from testsavedregex | |
| 5697 | Study data loaded from testsavedregex | |
| 5698 | abc | |
| 5699 | 0: abc | |
| 5700 | ** Failers | |
| 5701 | No match | |
| 5702 | bca | |
| 5703 | No match | |
| 5704 | ||
| 5705 | /abc/IFSS>testsavedregex | |
| 5706 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| 5707 | No options | No options |
| 5708 | First char = 'a' | First char = 'a' |
| 5709 | Need char = 'c' | Need char = 'c' |
| 5710 | Compiled regex written to testsavedregex | Compiled pattern written to testsavedregex |
| 5711 | <testsavedregex | <testsavedregex |
| 5712 | Compiled regex (byte-inverted) loaded from testsavedregex | Compiled pattern (byte-inverted) loaded from testsavedregex |
| 5713 | No study data | No study data |
| 5714 | abc | abc |
| 5715 | 0: abc | 0: abc |
| # | Line 5575 Capturing subpattern count = 1 | Line 5723 Capturing subpattern count = 1 |
| 5723 | No options | No options |
| 5724 | No first char | No first char |
| 5725 | No need char | No need char |
| 5726 | Subject length lower bound = 1 | |
| 5727 | Starting byte set: a b | Starting byte set: a b |
| 5728 | Compiled regex written to testsavedregex | Compiled pattern written to testsavedregex |
| 5729 | Study data written to testsavedregex | Study data written to testsavedregex |
| 5730 | <testsavedregex | <testsavedregex |
| 5731 | Compiled regex loaded from testsavedregex | Compiled pattern loaded from testsavedregex |
| 5732 | Study data loaded from testsavedregex | Study data loaded from testsavedregex |
| 5733 | abc | abc |
| 5734 | 0: a | 0: a |
| # | Line 5590 Study data loaded from testsavedregex | Line 5739 Study data loaded from testsavedregex |
| 5739 | def | def |
| 5740 | No match | No match |
| 5741 | ||
| 5742 | /(a|b)/ISS>testsavedregex | |
| 5743 | Capturing subpattern count = 1 | |
| 5744 | No options | |
| 5745 | No first char | |
| 5746 | No need char | |
| 5747 | Compiled pattern written to testsavedregex | |
| 5748 | <testsavedregex | |
| 5749 | Compiled pattern loaded from testsavedregex | |
| 5750 | No study data | |
| 5751 | abc | |
| 5752 | 0: a | |
| 5753 | 1: a | |
| 5754 | ** Failers | |
| 5755 | 0: a | |
| 5756 | 1: a | |
| 5757 | def | |
| 5758 | No match | |
| 5759 | ||
| 5760 | /(a|b)/ISF>testsavedregex | /(a|b)/ISF>testsavedregex |
| 5761 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| 5762 | No options | No options |
| 5763 | No first char | No first char |
| 5764 | No need char | No need char |
| 5765 | Subject length lower bound = 1 | |
| 5766 | Starting byte set: a b | Starting byte set: a b |
| 5767 | Compiled regex written to testsavedregex | Compiled pattern written to testsavedregex |
| 5768 | Study data written to testsavedregex | Study data written to testsavedregex |
| 5769 | <testsavedregex | <testsavedregex |
| 5770 | Compiled regex (byte-inverted) loaded from testsavedregex | Compiled pattern (byte-inverted) loaded from testsavedregex |
| 5771 | Study data loaded from testsavedregex | Study data loaded from testsavedregex |
| 5772 | abc | abc |
| 5773 | 0: a | 0: a |
| # | Line 5610 Study data loaded from testsavedregex | Line 5778 Study data loaded from testsavedregex |
| 5778 | def | def |
| 5779 | No match | No match |
| 5780 | ||
| 5781 | /(a|b)/ISSF>testsavedregex | |
| 5782 | Capturing subpattern count = 1 | |
| 5783 | No options | |
| 5784 | No first char | |
| 5785 | No need char | |
| 5786 | Compiled pattern written to testsavedregex | |
| 5787 | <testsavedregex | |
| 5788 | Compiled pattern (byte-inverted) loaded from testsavedregex | |
| 5789 | No study data | |
| 5790 | abc | |
| 5791 | 0: a | |
| 5792 | 1: a | |
| 5793 | ** Failers | |
| 5794 | 0: a | |
| 5795 | 1: a | |
| 5796 | def | |
| 5797 | No match | |
| 5798 | ||
| 5799 | ~<(\w+)/?>(.)*</(\1)>~smgI | ~<(\w+)/?>(.)*</(\1)>~smgI |
| 5800 | Capturing subpattern count = 3 | Capturing subpattern count = 3 |
| 5801 | Max back reference = 1 | Max back reference = 1 |
| Partial matching not supported | ||
| 5802 | Options: multiline dotall | Options: multiline dotall |
| 5803 | First char = '<' | First char = '<' |
| 5804 | Need char = '>' | Need char = '>' |
| 5805 | <!DOCTYPE seite SYSTEM "http://www.lco.lineas.de/xmlCms.dtd">\n<seite>\n<dokumenteninformation>\n<seitentitel>Partner der LCO</seitentitel>\n<sprache>de</sprache>\n<seitenbeschreibung>Partner der LINEAS Consulting\nGmbH</seitenbeschreibung>\n<schluesselworte>LINEAS Consulting GmbH Hamburg\nPartnerfirmen</schluesselworte>\n<revisit>30 days</revisit>\n<robots>index,follow</robots>\n<menueinformation>\n<aktiv>ja</aktiv>\n<menueposition>3</menueposition>\n<menuetext>Partner</menuetext>\n</menueinformation>\n<lastedited>\n<autor>LCO</autor>\n<firma>LINEAS Consulting</firma>\n<datum>15.10.2003</datum>\n</lastedited>\n</dokumenteninformation>\n<inhalt>\n\n<absatzueberschrift>Die Partnerfirmen der LINEAS Consulting\nGmbH</absatzueberschrift>\n\n<absatz><link ziel="http://www.ca.com/" zielfenster="_blank">\n<bild name="logo_ca.gif" rahmen="no"/></link> <link\nziel="http://www.ey.com/" zielfenster="_blank"><bild\nname="logo_euy.gif" rahmen="no"/></link>\n</absatz>\n\n<absatz><link ziel="http://www.cisco.de/" zielfenster="_blank">\n<bild name="logo_cisco.gif" rahmen="ja"/></link></absatz>\n\n<absatz><link ziel="http://www.atelion.de/"\nzielfenster="_blank"><bild\nname="logo_atelion.gif" rahmen="no"/></link>\n</absatz>\n\n<absatz><link ziel="http://www.line-information.de/"\nzielfenster="_blank">\n<bild name="logo_line_information.gif" rahmen="no"/></link>\n</absatz>\n\n<absatz><bild name="logo_aw.gif" rahmen="no"/></absatz>\n\n<absatz><link ziel="http://www.incognis.de/"\nzielfenster="_blank"><bild\nname="logo_incognis.gif" rahmen="no"/></link></absatz>\n\n<absatz><link ziel="http://www.addcraft.com/"\nzielfenster="_blank"><bild\nname="logo_addcraft.gif" rahmen="no"/></link></absatz>\n\n<absatz><link ziel="http://www.comendo.com/"\nzielfenster="_blank"><bild\nname="logo_comendo.gif" rahmen="no"/></link></absatz>\n\n</inhalt>\n</seite> | \J1024<!DOCTYPE seite SYSTEM "http://www.lco.lineas.de/xmlCms.dtd">\n<seite>\n<dokumenteninformation>\n<seitentitel>Partner der LCO</seitentitel>\n<sprache>de</sprache>\n<seitenbeschreibung>Partner der LINEAS Consulting\nGmbH</seitenbeschreibung>\n<schluesselworte>LINEAS Consulting GmbH Hamburg\nPartnerfirmen</schluesselworte>\n<revisit>30 days</revisit>\n<robots>index,follow</robots>\n<menueinformation>\n<aktiv>ja</aktiv>\n<menueposition>3</menueposition>\n<menuetext>Partner</menuetext>\n</menueinformation>\n<lastedited>\n<autor>LCO</autor>\n<firma>LINEAS Consulting</firma>\n<datum>15.10.2003</datum>\n</lastedited>\n</dokumenteninformation>\n<inhalt>\n\n<absatzueberschrift>Die Partnerfirmen der LINEAS Consulting\nGmbH</absatzueberschrift>\n\n<absatz><link ziel="http://www.ca.com/" zielfenster="_blank">\n<bild name="logo_ca.gif" rahmen="no"/></link> <link\nziel="http://www.ey.com/" zielfenster="_blank"><bild\nname="logo_euy.gif" rahmen="no"/></link>\n</absatz>\n\n<absatz><link ziel="http://www.cisco.de/" zielfenster="_blank">\n<bild name="logo_cisco.gif" rahmen="ja"/></link></absatz>\n\n<absatz><link ziel="http://www.atelion.de/"\nzielfenster="_blank"><bild\nname="logo_atelion.gif" rahmen="no"/></link>\n</absatz>\n\n<absatz><link ziel="http://www.line-information.de/"\nzielfenster="_blank">\n<bild name="logo_line_information.gif" rahmen="no"/></link>\n</absatz>\n\n<absatz><bild name="logo_aw.gif" rahmen="no"/></absatz>\n\n<absatz><link ziel="http://www.incognis.de/"\nzielfenster="_blank"><bild\nname="logo_incognis.gif" rahmen="no"/></link></absatz>\n\n<absatz><link ziel="http://www.addcraft.com/"\nzielfenster="_blank"><bild\nname="logo_addcraft.gif" rahmen="no"/></link></absatz>\n\n<absatz><link ziel="http://www.comendo.com/"\nzielfenster="_blank"><bild\nname="logo_comendo.gif" rahmen="no"/></link></absatz>\n\n</inhalt>\n</seite> |
| 5806 | 0: <seite>\x0a<dokumenteninformation>\x0a<seitentitel>Partner der LCO</seitentitel>\x0a<sprache>de</sprache>\x0a<seitenbeschreibung>Partner der LINEAS Consulting\x0aGmbH</seitenbeschreibung>\x0a<schluesselworte>LINEAS Consulting GmbH Hamburg\x0aPartnerfirmen</schluesselworte>\x0a<revisit>30 days</revisit>\x0a<robots>index,follow</robots>\x0a<menueinformation>\x0a<aktiv>ja</aktiv>\x0a<menueposition>3</menueposition>\x0a<menuetext>Partner</menuetext>\x0a</menueinformation>\x0a<lastedited>\x0a<autor>LCO</autor>\x0a<firma>LINEAS Consulting</firma>\x0a<datum>15.10.2003</datum>\x0a</lastedited>\x0a</dokumenteninformation>\x0a<inhalt>\x0a\x0a<absatzueberschrift>Die Partnerfirmen der LINEAS Consulting\x0aGmbH</absatzueberschrift>\x0a\x0a<absatz><link ziel="http://www.ca.com/" zielfenster="_blank">\x0a<bild name="logo_ca.gif" rahmen="no"/></link> <link\x0aziel="http://www.ey.com/" zielfenster="_blank"><bild\x0aname="logo_euy.gif" rahmen="no"/></link>\x0a</absatz>\x0a\x0a<absatz><link ziel="http://www.cisco.de/" zielfenster="_blank">\x0a<bild name="logo_cisco.gif" rahmen="ja"/></link></absatz>\x0a\x0a<absatz><link ziel="http://www.atelion.de/"\x0azielfenster="_blank"><bild\x0aname="logo_atelion.gif" rahmen="no"/></link>\x0a</absatz>\x0a\x0a<absatz><link ziel="http://www.line-information.de/"\x0azielfenster="_blank">\x0a<bild name="logo_line_information.gif" rahmen="no"/></link>\x0a</absatz>\x0a\x0a<absatz><bild name="logo_aw.gif" rahmen="no"/></absatz>\x0a\x0a<absatz><link ziel="http://www.incognis.de/"\x0azielfenster="_blank"><bild\x0aname="logo_incognis.gif" rahmen="no"/></link></absatz>\x0a\x0a<absatz><link ziel="http://www.addcraft.com/"\x0azielfenster="_blank"><bild\x0aname="logo_addcraft.gif" rahmen="no"/></link></absatz>\x0a\x0a<absatz><link ziel="http://www.comendo.com/"\x0azielfenster="_blank"><bild\x0aname="logo_comendo.gif" rahmen="no"/></link></absatz>\x0a\x0a</inhalt>\x0a</seite> | 0: <seite>\x0a<dokumenteninformation>\x0a<seitentitel>Partner der LCO</seitentitel>\x0a<sprache>de</sprache>\x0a<seitenbeschreibung>Partner der LINEAS Consulting\x0aGmbH</seitenbeschreibung>\x0a<schluesselworte>LINEAS Consulting GmbH Hamburg\x0aPartnerfirmen</schluesselworte>\x0a<revisit>30 days</revisit>\x0a<robots>index,follow</robots>\x0a<menueinformation>\x0a<aktiv>ja</aktiv>\x0a<menueposition>3</menueposition>\x0a<menuetext>Partner</menuetext>\x0a</menueinformation>\x0a<lastedited>\x0a<autor>LCO</autor>\x0a<firma>LINEAS Consulting</firma>\x0a<datum>15.10.2003</datum>\x0a</lastedited>\x0a</dokumenteninformation>\x0a<inhalt>\x0a\x0a<absatzueberschrift>Die Partnerfirmen der LINEAS Consulting\x0aGmbH</absatzueberschrift>\x0a\x0a<absatz><link ziel="http://www.ca.com/" zielfenster="_blank">\x0a<bild name="logo_ca.gif" rahmen="no"/></link> <link\x0aziel="http://www.ey.com/" zielfenster="_blank"><bild\x0aname="logo_euy.gif" rahmen="no"/></link>\x0a</absatz>\x0a\x0a<absatz><link ziel="http://www.cisco.de/" zielfenster="_blank">\x0a<bild name="logo_cisco.gif" rahmen="ja"/></link></absatz>\x0a\x0a<absatz><link ziel="http://www.atelion.de/"\x0azielfenster="_blank"><bild\x0aname="logo_atelion.gif" rahmen="no"/></link>\x0a</absatz>\x0a\x0a<absatz><link ziel="http://www.line-information.de/"\x0azielfenster="_blank">\x0a<bild name="logo_line_information.gif" rahmen="no"/></link>\x0a</absatz>\x0a\x0a<absatz><bild name="logo_aw.gif" rahmen="no"/></absatz>\x0a\x0a<absatz><link ziel="http://www.incognis.de/"\x0azielfenster="_blank"><bild\x0aname="logo_incognis.gif" rahmen="no"/></link></absatz>\x0a\x0a<absatz><link ziel="http://www.addcraft.com/"\x0azielfenster="_blank"><bild\x0aname="logo_addcraft.gif" rahmen="no"/></link></absatz>\x0a\x0a<absatz><link ziel="http://www.comendo.com/"\x0azielfenster="_blank"><bild\x0aname="logo_comendo.gif" rahmen="no"/></link></absatz>\x0a\x0a</inhalt>\x0a</seite> |
| 5807 | 1: seite | 1: seite |
| 5808 | 2: \x0a | 2: \x0a |
| # | Line 5631 No need char | Line 5816 No need char |
| 5816 | ||
| 5817 | /line\nbreak/I | /line\nbreak/I |
| 5818 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| 5819 | Contains explicit CR or LF match | |
| 5820 | No options | No options |
| 5821 | First char = 'l' | First char = 'l' |
| 5822 | Need char = 'k' | Need char = 'k' |
| # | Line 5641 Need char = 'k' | Line 5827 Need char = 'k' |
| 5827 | ||
| 5828 | /line\nbreak/If | /line\nbreak/If |
| 5829 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| 5830 | Contains explicit CR or LF match | |
| 5831 | Options: firstline | Options: firstline |
| 5832 | First char = 'l' | First char = 'l' |
| 5833 | Need char = 'k' | Need char = 'k' |
| # | Line 5653 No match | Line 5840 No match |
| 5840 | ||
| 5841 | /line\nbreak/Imf | /line\nbreak/Imf |
| 5842 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| 5843 | Contains explicit CR or LF match | |
| 5844 | Options: multiline firstline | Options: multiline firstline |
| 5845 | First char = 'l' | First char = 'l' |
| 5846 | Need char = 'k' | Need char = 'k' |
| # | Line 5663 No match | Line 5851 No match |
| 5851 | line one\nthis is a line\nbreak in the second line | line one\nthis is a line\nbreak in the second line |
| 5852 | No match | No match |
| 5853 | ||
| 5854 | /ab.cd/IP | /ab.cd/P |
| 5855 | ab-cd | ab-cd |
| 5856 | 0: ab-cd | 0: ab-cd |
| 5857 | ab=cd | ab=cd |
| # | Line 5673 No match: POSIX code 17: match failed | Line 5861 No match: POSIX code 17: match failed |
| 5861 | ab\ncd | ab\ncd |
| 5862 | No match: POSIX code 17: match failed | No match: POSIX code 17: match failed |
| 5863 | ||
| 5864 | /ab.cd/IPs | /ab.cd/Ps |
| 5865 | ab-cd | ab-cd |
| 5866 | 0: ab-cd | 0: ab-cd |
| 5867 | ab=cd | ab=cd |
| # | Line 5917 Matched, but too many substrings | Line 6105 Matched, but too many substrings |
| 6105 | ||
| 6106 | /[^()]*(?:\((?R)\)[^()]*)*/I | /[^()]*(?:\((?R)\)[^()]*)*/I |
| 6107 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 6108 | No options | No options |
| 6109 | No first char | No first char |
| 6110 | No need char | No need char |
| # | Line 5930 No need char | Line 6117 No need char |
| 6117 | ||
| 6118 | /[^()]*(?:\((?>(?R))\)[^()]*)*/I | /[^()]*(?:\((?>(?R))\)[^()]*)*/I |
| 6119 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 6120 | No options | No options |
| 6121 | No first char | No first char |
| 6122 | No need char | No need char |
| # | Line 5941 No need char | Line 6127 No need char |
| 6127 | ||
| 6128 | /[^()]*(?:\((?R)\))*[^()]*/I | /[^()]*(?:\((?R)\))*[^()]*/I |
| 6129 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 6130 | No options | No options |
| 6131 | No first char | No first char |
| 6132 | No need char | No need char |
| # | Line 5952 No need char | Line 6137 No need char |
| 6137 | ||
| 6138 | /(?:\((?R)\))*[^()]*/I | /(?:\((?R)\))*[^()]*/I |
| 6139 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 6140 | No options | No options |
| 6141 | No first char | No first char |
| 6142 | No need char | No need char |
| # | Line 5965 No need char | Line 6149 No need char |
| 6149 | ||
| 6150 | /(?:\((?R)\))|[^()]*/I | /(?:\((?R)\))|[^()]*/I |
| 6151 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 6152 | No options | No options |
| 6153 | No first char | No first char |
| 6154 | No need char | No need char |
| # | Line 5978 No need char | Line 6161 No need char |
| 6161 | ((this)) | ((this)) |
| 6162 | 0: ((this)) | 0: ((this)) |
| 6163 | ||
| 6164 | /a(b)c/IPN | /a(b)c/PN |
| 6165 | abc | abc |
| 6166 | Matched with REG_NOSUB | Matched with REG_NOSUB |
| 6167 | ||
| 6168 | /a(?P<name>b)c/IPN | /a(?P<name>b)c/PN |
| 6169 | abc | abc |
| 6170 | Matched with REG_NOSUB | Matched with REG_NOSUB |
| 6171 | ||
| # | Line 6160 Named capturing subpatterns: | Line 6343 Named capturing subpatterns: |
| 6343 | A 2 | A 2 |
| 6344 | A 3 | A 3 |
| 6345 | Options: anchored dupnames | Options: anchored dupnames |
| 6346 | Duplicate name status changes | |
| 6347 | No first char | No first char |
| 6348 | No need char | No need char |
| 6349 | a1b\CA | a1b\CA |
| # | Line 6306 Failed: octal value is greater than \377 | Line 6490 Failed: octal value is greater than \377 |
| 6490 | ||
| 6491 | /\s*,\s*/IS | /\s*,\s*/IS |
| 6492 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 6493 | No options | No options |
| 6494 | No first char | No first char |
| 6495 | Need char = ',' | Need char = ',' |
| 6496 | Subject length lower bound = 1 | |
| 6497 | Starting byte set: \x09 \x0a \x0c \x0d \x20 , | Starting byte set: \x09 \x0a \x0c \x0d \x20 , |
| 6498 | \x0b,\x0b | \x0b,\x0b |
| 6499 | 0: , | 0: , |
| # |
Line 6436
Unknown newline type at: |
Line 6620
Unknown newline type at: |
| 6620 | ||
| 6621 | /.*/I<lf> | /.*/I<lf> |
| 6622 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 6623 | Options: | Options: |
| 6624 | Forced newline sequence: LF | Forced newline sequence: LF |
| 6625 | First char at start or follows newline | First char at start or follows newline |
| # | Line 6462 No need char | Line 6645 No need char |
| 6645 | ||
| 6646 | /\w+(.)(.)?def/Is | /\w+(.)(.)?def/Is |
| 6647 | Capturing subpattern count = 2 | Capturing subpattern count = 2 |
| Partial matching not supported | ||
| 6648 | Options: dotall | Options: dotall |
| 6649 | No first char | No first char |
| 6650 | Need char = 'f' | Need char = 'f' |
| # | Line 6479 Need char = 'f' | Line 6661 Need char = 'f' |
| 6661 | ||
| 6662 | +((?:\s|//.*\\n|/[*](?:\\n|.)*?[*]/)*)+I | +((?:\s|//.*\\n|/[*](?:\\n|.)*?[*]/)*)+I |
| 6663 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 6664 | No options | No options |
| 6665 | No first char | No first char |
| 6666 | No need char | No need char |
| # | Line 6614 No need char | Line 6795 No need char |
| 6795 | ||
| 6796 | /(a*b|(?i:c*(?-i)d))/IS | /(a*b|(?i:c*(?-i)d))/IS |
| 6797 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 6798 | No options | No options |
| 6799 | No first char | No first char |
| 6800 | No need char | No need char |
| 6801 | Subject length lower bound = 1 | |
| 6802 | Starting byte set: C a b c d | Starting byte set: C a b c d |
| 6803 | ||
| 6804 | /()[ab]xyz/IS | /()[ab]xyz/IS |
| # | Line 6625 Capturing subpattern count = 1 | Line 6806 Capturing subpattern count = 1 |
| 6806 | No options | No options |
| 6807 | No first char | No first char |
| 6808 | Need char = 'z' | Need char = 'z' |
| 6809 | Subject length lower bound = 4 | |
| 6810 | Starting byte set: a b | Starting byte set: a b |
| 6811 | ||
| 6812 | /(|)[ab]xyz/IS | /(|)[ab]xyz/IS |
| # | Line 6632 Capturing subpattern count = 1 | Line 6814 Capturing subpattern count = 1 |
| 6814 | No options | No options |
| 6815 | No first char | No first char |
| 6816 | Need char = 'z' | Need char = 'z' |
| 6817 | Subject length lower bound = 4 | |
| 6818 | Starting byte set: a b | Starting byte set: a b |
| 6819 | ||
| 6820 | /(|c)[ab]xyz/IS | /(|c)[ab]xyz/IS |
| # | Line 6639 Capturing subpattern count = 1 | Line 6822 Capturing subpattern count = 1 |
| 6822 | No options | No options |
| 6823 | No first char | No first char |
| 6824 | Need char = 'z' | Need char = 'z' |
| 6825 | Subject length lower bound = 4 | |
| 6826 | Starting byte set: a b c | Starting byte set: a b c |
| 6827 | ||
| 6828 | /(|c?)[ab]xyz/IS | /(|c?)[ab]xyz/IS |
| # | Line 6646 Capturing subpattern count = 1 | Line 6830 Capturing subpattern count = 1 |
| 6830 | No options | No options |
| 6831 | No first char | No first char |
| 6832 | Need char = 'z' | Need char = 'z' |
| 6833 | Subject length lower bound = 4 | |
| 6834 | Starting byte set: a b c | Starting byte set: a b c |
| 6835 | ||
| 6836 | /(d?|c?)[ab]xyz/IS | /(d?|c?)[ab]xyz/IS |
| # | Line 6653 Capturing subpattern count = 1 | Line 6838 Capturing subpattern count = 1 |
| 6838 | No options | No options |
| 6839 | No first char | No first char |
| 6840 | Need char = 'z' | Need char = 'z' |
| 6841 | Subject length lower bound = 4 | |
| 6842 | Starting byte set: a b c d | Starting byte set: a b c d |
| 6843 | ||
| 6844 | /(d?|c)[ab]xyz/IS | /(d?|c)[ab]xyz/IS |
| # | Line 6660 Capturing subpattern count = 1 | Line 6846 Capturing subpattern count = 1 |
| 6846 | No options | No options |
| 6847 | No first char | No first char |
| 6848 | Need char = 'z' | Need char = 'z' |
| 6849 | Subject length lower bound = 4 | |
| 6850 | Starting byte set: a b c d | Starting byte set: a b c d |
| 6851 | ||
| 6852 | /^a*b\d/DZ | /^a*b\d/DZ |
| 6853 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 6854 | Bra 0 | Bra |
| 6855 | ^ | ^ |
| 6856 | a*+ | a*+ |
| 6857 | b | b |
| # | Line 6673 Starting byte set: a b c d | Line 6860 Starting byte set: a b c d |
| 6860 | End | End |
| 6861 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 6862 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 6863 | Options: anchored | Options: anchored |
| 6864 | No first char | No first char |
| 6865 | Need char = 'b' | Need char = 'b' |
| 6866 | ||
| 6867 | /^a*+b\d/DZ | /^a*+b\d/DZ |
| 6868 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 6869 | Bra 0 | Bra |
| 6870 | ^ | ^ |
| 6871 | a*+ | a*+ |
| 6872 | b | b |
| # | Line 6689 Need char = 'b' | Line 6875 Need char = 'b' |
| 6875 | End | End |
| 6876 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 6877 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 6878 | Options: anchored | Options: anchored |
| 6879 | No first char | No first char |
| 6880 | Need char = 'b' | Need char = 'b' |
| 6881 | ||
| 6882 | /^a*?b\d/DZ | /^a*?b\d/DZ |
| 6883 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 6884 | Bra 0 | Bra |
| 6885 | ^ | ^ |
| 6886 | a*+ | a*+ |
| 6887 | b | b |
| # | Line 6705 Need char = 'b' | Line 6890 Need char = 'b' |
| 6890 | End | End |
| 6891 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 6892 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 6893 | Options: anchored | Options: anchored |
| 6894 | No first char | No first char |
| 6895 | Need char = 'b' | Need char = 'b' |
| 6896 | ||
| 6897 | /^a+A\d/DZ | /^a+A\d/DZ |
| 6898 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 6899 | Bra 0 | Bra |
| 6900 | ^ | ^ |
| 6901 | a++ | a++ |
| 6902 | A | A |
| # | Line 6721 Need char = 'b' | Line 6905 Need char = 'b' |
| 6905 | End | End |
| 6906 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 6907 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 6908 | Options: anchored | Options: anchored |
| 6909 | No first char | No first char |
| 6910 | Need char = 'A' | Need char = 'A' |
| # | Line 6734 No match | Line 6917 No match |
| 6917 | ||
| 6918 | /^a*A\d/IiDZ | /^a*A\d/IiDZ |
| 6919 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 6920 | Bra 0 | Bra |
| 6921 | ^ | ^ |
| 6922 | a* | /i a* |
| 6923 | NC A | /i A |
| 6924 | \d | \d |
| 6925 | Ket | Ket |
| 6926 | End | End |
| 6927 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 6928 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 6929 | Options: anchored caseless | Options: anchored caseless |
| 6930 | No first char | No first char |
| 6931 | Need char = 'A' (caseless) | Need char = 'A' (caseless) |
| # | Line 6754 Need char = 'A' (caseless) | Line 6936 Need char = 'A' (caseless) |
| 6936 | ||
| 6937 | /(a*|b*)[cd]/IS | /(a*|b*)[cd]/IS |
| 6938 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 6939 | No options | No options |
| 6940 | No first char | No first char |
| 6941 | No need char | No need char |
| 6942 | Subject length lower bound = 1 | |
| 6943 | Starting byte set: a b c d | Starting byte set: a b c d |
| 6944 | ||
| 6945 | /(a+|b*)[cd]/IS | /(a+|b*)[cd]/IS |
| 6946 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 6947 | No options | No options |
| 6948 | No first char | No first char |
| 6949 | No need char | No need char |
| 6950 | Subject length lower bound = 1 | |
| 6951 | Starting byte set: a b c d | Starting byte set: a b c d |
| 6952 | ||
| 6953 | /(a*|b+)[cd]/IS | /(a*|b+)[cd]/IS |
| 6954 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 6955 | No options | No options |
| 6956 | No first char | No first char |
| 6957 | No need char | No need char |
| 6958 | Subject length lower bound = 1 | |
| 6959 | Starting byte set: a b c d | Starting byte set: a b c d |
| 6960 | ||
| 6961 | /(a+|b+)[cd]/IS | /(a+|b+)[cd]/IS |
| 6962 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| Partial matching not supported | ||
| 6963 | No options | No options |
| 6964 | No first char | No first char |
| 6965 | No need char | No need char |
| 6966 | Subject length lower bound = 2 | |
| 6967 | Starting byte set: a b | Starting byte set: a b |
| 6968 | ||
| 6969 | /(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( | /(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( |
| # | Line 6816 Matched, but too many substrings | Line 6998 Matched, but too many substrings |
| 6998 | ||
| 6999 | /a*\d/BZ | /a*\d/BZ |
| 7000 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7001 | Bra 0 | Bra |
| 7002 | a*+ | a*+ |
| 7003 | \d | \d |
| 7004 | Ket | Ket |
| # | Line 6825 Matched, but too many substrings | Line 7007 Matched, but too many substrings |
| 7007 | ||
| 7008 | /a*\D/BZ | /a*\D/BZ |
| 7009 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7010 | Bra 0 | Bra |
| 7011 | a* | a* |
| 7012 | \D | \D |
| 7013 | Ket | Ket |
| # | Line 6834 Matched, but too many substrings | Line 7016 Matched, but too many substrings |
| 7016 | ||
| 7017 | /0*\d/BZ | /0*\d/BZ |
| 7018 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7019 | Bra 0 | Bra |
| 7020 | 0* | 0* |
| 7021 | \d | \d |
| 7022 | Ket | Ket |
| # | Line 6843 Matched, but too many substrings | Line 7025 Matched, but too many substrings |
| 7025 | ||
| 7026 | /0*\D/BZ | /0*\D/BZ |
| 7027 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7028 | Bra 0 | Bra |
| 7029 | 0*+ | 0*+ |
| 7030 | \D | \D |
| 7031 | Ket | Ket |
| # | Line 6852 Matched, but too many substrings | Line 7034 Matched, but too many substrings |
| 7034 | ||
| 7035 | /a*\s/BZ | /a*\s/BZ |
| 7036 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7037 | Bra 0 | Bra |
| 7038 | a*+ | a*+ |
| 7039 | \s | \s |
| 7040 | Ket | Ket |
| # | Line 6861 Matched, but too many substrings | Line 7043 Matched, but too many substrings |
| 7043 | ||
| 7044 | /a*\S/BZ | /a*\S/BZ |
| 7045 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7046 | Bra 0 | Bra |
| 7047 | a* | a* |
| 7048 | \S | \S |
| 7049 | Ket | Ket |
| # | Line 6870 Matched, but too many substrings | Line 7052 Matched, but too many substrings |
| 7052 | ||
| 7053 | / *\s/BZ | / *\s/BZ |
| 7054 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7055 | Bra 0 | Bra |
| 7056 | * | * |
| 7057 | \s | \s |
| 7058 | Ket | Ket |
| # | Line 6879 Matched, but too many substrings | Line 7061 Matched, but too many substrings |
| 7061 | ||
| 7062 | / *\S/BZ | / *\S/BZ |
| 7063 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7064 | Bra 0 | Bra |
| 7065 | *+ | *+ |
| 7066 | \S | \S |
| 7067 | Ket | Ket |
| # | Line 6888 Matched, but too many substrings | Line 7070 Matched, but too many substrings |
| 7070 | ||
| 7071 | /a*\w/BZ | /a*\w/BZ |
| 7072 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7073 | Bra 0 | Bra |
| 7074 | a* | a* |
| 7075 | \w | \w |
| 7076 | Ket | Ket |
| # | Line 6897 Matched, but too many substrings | Line 7079 Matched, but too many substrings |
| 7079 | ||
| 7080 | /a*\W/BZ | /a*\W/BZ |
| 7081 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7082 | Bra 0 | Bra |
| 7083 | a*+ | a*+ |
| 7084 | \W | \W |
| 7085 | Ket | Ket |
| # | Line 6906 Matched, but too many substrings | Line 7088 Matched, but too many substrings |
| 7088 | ||
| 7089 | /=*\w/BZ | /=*\w/BZ |
| 7090 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7091 | Bra 0 | Bra |
| 7092 | =*+ | =*+ |
| 7093 | \w | \w |
| 7094 | Ket | Ket |
| # | Line 6915 Matched, but too many substrings | Line 7097 Matched, but too many substrings |
| 7097 | ||
| 7098 | /=*\W/BZ | /=*\W/BZ |
| 7099 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7100 | Bra 0 | Bra |
| 7101 | =* | =* |
| 7102 | \W | \W |
| 7103 | Ket | Ket |
| # | Line 6924 Matched, but too many substrings | Line 7106 Matched, but too many substrings |
| 7106 | ||
| 7107 | /\d*a/BZ | /\d*a/BZ |
| 7108 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7109 | Bra 0 | Bra |
| 7110 | \d*+ | \d*+ |
| 7111 | a | a |
| 7112 | Ket | Ket |
| # | Line 6933 Matched, but too many substrings | Line 7115 Matched, but too many substrings |
| 7115 | ||
| 7116 | /\d*2/BZ | /\d*2/BZ |
| 7117 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7118 | Bra 0 | Bra |
| 7119 | \d* | \d* |
| 7120 | 2 | 2 |
| 7121 | Ket | Ket |
| # | Line 6942 Matched, but too many substrings | Line 7124 Matched, but too many substrings |
| 7124 | ||
| 7125 | /\d*\d/BZ | /\d*\d/BZ |
| 7126 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7127 | Bra 0 | Bra |
| 7128 | \d* | \d* |
| 7129 | \d | \d |
| 7130 | Ket | Ket |
| # | Line 6951 Matched, but too many substrings | Line 7133 Matched, but too many substrings |
| 7133 | ||
| 7134 | /\d*\D/BZ | /\d*\D/BZ |
| 7135 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7136 | Bra 0 | Bra |
| 7137 | \d*+ | \d*+ |
| 7138 | \D | \D |
| 7139 | Ket | Ket |
| # | Line 6960 Matched, but too many substrings | Line 7142 Matched, but too many substrings |
| 7142 | ||
| 7143 | /\d*\s/BZ | /\d*\s/BZ |
| 7144 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7145 | Bra 0 | Bra |
| 7146 | \d*+ | \d*+ |
| 7147 | \s | \s |
| 7148 | Ket | Ket |
| # | Line 6969 Matched, but too many substrings | Line 7151 Matched, but too many substrings |
| 7151 | ||
| 7152 | /\d*\S/BZ | /\d*\S/BZ |
| 7153 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7154 | Bra 0 | Bra |
| 7155 | \d* | \d* |
| 7156 | \S | \S |
| 7157 | Ket | Ket |
| # | Line 6978 Matched, but too many substrings | Line 7160 Matched, but too many substrings |
| 7160 | ||
| 7161 | /\d*\w/BZ | /\d*\w/BZ |
| 7162 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7163 | Bra 0 | Bra |
| 7164 | \d* | \d* |
| 7165 | \w | \w |
| 7166 | Ket | Ket |
| # | Line 6987 Matched, but too many substrings | Line 7169 Matched, but too many substrings |
| 7169 | ||
| 7170 | /\d*\W/BZ | /\d*\W/BZ |
| 7171 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7172 | Bra 0 | Bra |
| 7173 | \d*+ | \d*+ |
| 7174 | \W | \W |
| 7175 | Ket | Ket |
| # | Line 6996 Matched, but too many substrings | Line 7178 Matched, but too many substrings |
| 7178 | ||
| 7179 | /\D*a/BZ | /\D*a/BZ |
| 7180 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7181 | Bra 0 | Bra |
| 7182 | \D* | \D* |
| 7183 | a | a |
| 7184 | Ket | Ket |
| # | Line 7005 Matched, but too many substrings | Line 7187 Matched, but too many substrings |
| 7187 | ||
| 7188 | /\D*2/BZ | /\D*2/BZ |
| 7189 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7190 | Bra 0 | Bra |
| 7191 | \D*+ | \D*+ |
| 7192 | 2 | 2 |
| 7193 | Ket | Ket |
| # | Line 7014 Matched, but too many substrings | Line 7196 Matched, but too many substrings |
| 7196 | ||
| 7197 | /\D*\d/BZ | /\D*\d/BZ |
| 7198 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7199 | Bra 0 | Bra |
| 7200 | \D*+ | \D*+ |
| 7201 | \d | \d |
| 7202 | Ket | Ket |
| # | Line 7023 Matched, but too many substrings | Line 7205 Matched, but too many substrings |
| 7205 | ||
| 7206 | /\D*\D/BZ | /\D*\D/BZ |
| 7207 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7208 | Bra 0 | Bra |
| 7209 | \D* | \D* |
| 7210 | \D | \D |
| 7211 | Ket | Ket |
| # | Line 7032 Matched, but too many substrings | Line 7214 Matched, but too many substrings |
| 7214 | ||
| 7215 | /\D*\s/BZ | /\D*\s/BZ |
| 7216 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7217 | Bra 0 | Bra |
| 7218 | \D* | \D* |
| 7219 | \s | \s |
| 7220 | Ket | Ket |
| # | Line 7041 Matched, but too many substrings | Line 7223 Matched, but too many substrings |
| 7223 | ||
| 7224 | /\D*\S/BZ | /\D*\S/BZ |
| 7225 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7226 | Bra 0 | Bra |
| 7227 | \D* | \D* |
| 7228 | \S | \S |
| 7229 | Ket | Ket |
| # | Line 7050 Matched, but too many substrings | Line 7232 Matched, but too many substrings |
| 7232 | ||
| 7233 | /\D*\w/BZ | /\D*\w/BZ |
| 7234 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7235 | Bra 0 | Bra |
| 7236 | \D* | \D* |
| 7237 | \w | \w |
| 7238 | Ket | Ket |
| # | Line 7059 Matched, but too many substrings | Line 7241 Matched, but too many substrings |
| 7241 | ||
| 7242 | /\D*\W/BZ | /\D*\W/BZ |
| 7243 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7244 | Bra 0 | Bra |
| 7245 | \D* | \D* |
| 7246 | \W | \W |
| 7247 | Ket | Ket |
| # | Line 7068 Matched, but too many substrings | Line 7250 Matched, but too many substrings |
| 7250 | ||
| 7251 | /\s*a/BZ | /\s*a/BZ |
| 7252 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7253 | Bra 0 | Bra |
| 7254 | \s*+ | \s*+ |
| 7255 | a | a |
| 7256 | Ket | Ket |
| # | Line 7077 Matched, but too many substrings | Line 7259 Matched, but too many substrings |
| 7259 | ||
| 7260 | /\s*2/BZ | /\s*2/BZ |
| 7261 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7262 | Bra 0 | Bra |
| 7263 | \s*+ | \s*+ |
| 7264 | 2 | 2 |
| 7265 | Ket | Ket |
| # | Line 7086 Matched, but too many substrings | Line 7268 Matched, but too many substrings |
| 7268 | ||
| 7269 | /\s*\d/BZ | /\s*\d/BZ |
| 7270 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7271 | Bra 0 | Bra |
| 7272 | \s*+ | \s*+ |
| 7273 | \d | \d |
| 7274 | Ket | Ket |
| # | Line 7095 Matched, but too many substrings | Line 7277 Matched, but too many substrings |
| 7277 | ||
| 7278 | /\s*\D/BZ | /\s*\D/BZ |
| 7279 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7280 | Bra 0 | Bra |
| 7281 | \s* | \s* |
| 7282 | \D | \D |
| 7283 | Ket | Ket |
| # | Line 7104 Matched, but too many substrings | Line 7286 Matched, but too many substrings |
| 7286 | ||
| 7287 | /\s*\s/BZ | /\s*\s/BZ |
| 7288 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7289 | Bra 0 | Bra |
| 7290 | \s* | \s* |
| 7291 | \s | \s |
| 7292 | Ket | Ket |
| # | Line 7113 Matched, but too many substrings | Line 7295 Matched, but too many substrings |
| 7295 | ||
| 7296 | /\s*\S/BZ | /\s*\S/BZ |
| 7297 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7298 | Bra 0 | Bra |
| 7299 | \s*+ | \s*+ |
| 7300 | \S | \S |
| 7301 | Ket | Ket |
| # | Line 7122 Matched, but too many substrings | Line 7304 Matched, but too many substrings |
| 7304 | ||
| 7305 | /\s*\w/BZ | /\s*\w/BZ |
| 7306 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7307 | Bra 0 | Bra |
| 7308 | \s*+ | \s*+ |
| 7309 | \w | \w |
| 7310 | Ket | Ket |
| # | Line 7131 Matched, but too many substrings | Line 7313 Matched, but too many substrings |
| 7313 | ||
| 7314 | /\s*\W/BZ | /\s*\W/BZ |
| 7315 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7316 | Bra 0 | Bra |
| 7317 | \s* | \s* |
| 7318 | \W | \W |
| 7319 | Ket | Ket |
| # | Line 7140 Matched, but too many substrings | Line 7322 Matched, but too many substrings |
| 7322 | ||
| 7323 | /\S*a/BZ | /\S*a/BZ |
| 7324 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7325 | Bra 0 | Bra |
| 7326 | \S* | \S* |
| 7327 | a | a |
| 7328 | Ket | Ket |
| # | Line 7149 Matched, but too many substrings | Line 7331 Matched, but too many substrings |
| 7331 | ||
| 7332 | /\S*2/BZ | /\S*2/BZ |
| 7333 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7334 | Bra 0 | Bra |
| 7335 | \S* | \S* |
| 7336 | 2 | 2 |
| 7337 | Ket | Ket |
| # | Line 7158 Matched, but too many substrings | Line 7340 Matched, but too many substrings |
| 7340 | ||
| 7341 | /\S*\d/BZ | /\S*\d/BZ |
| 7342 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7343 | Bra 0 | Bra |
| 7344 | \S* | \S* |
| 7345 | \d | \d |
| 7346 | Ket | Ket |
| # | Line 7167 Matched, but too many substrings | Line 7349 Matched, but too many substrings |
| 7349 | ||
| 7350 | /\S*\D/BZ | /\S*\D/BZ |
| 7351 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7352 | Bra 0 | Bra |
| 7353 | \S* | \S* |
| 7354 | \D | \D |
| 7355 | Ket | Ket |
| # | Line 7176 Matched, but too many substrings | Line 7358 Matched, but too many substrings |
| 7358 | ||
| 7359 | /\S*\s/BZ | /\S*\s/BZ |
| 7360 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7361 | Bra 0 | Bra |
| 7362 | \S*+ | \S*+ |
| 7363 | \s | \s |
| 7364 | Ket | Ket |
| # | Line 7185 Matched, but too many substrings | Line 7367 Matched, but too many substrings |
| 7367 | ||
| 7368 | /\S*\S/BZ | /\S*\S/BZ |
| 7369 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7370 | Bra 0 | Bra |
| 7371 | \S* | \S* |
| 7372 | \S | \S |
| 7373 | Ket | Ket |
| # | Line 7194 Matched, but too many substrings | Line 7376 Matched, but too many substrings |
| 7376 | ||
| 7377 | /\S*\w/BZ | /\S*\w/BZ |
| 7378 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7379 | Bra 0 | Bra |
| 7380 | \S* | \S* |
| 7381 | \w | \w |
| 7382 | Ket | Ket |
| # | Line 7203 Matched, but too many substrings | Line 7385 Matched, but too many substrings |
| 7385 | ||
| 7386 | /\S*\W/BZ | /\S*\W/BZ |
| 7387 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7388 | Bra 0 | Bra |
| 7389 | \S* | \S* |
| 7390 | \W | \W |
| 7391 | Ket | Ket |
| # | Line 7212 Matched, but too many substrings | Line 7394 Matched, but too many substrings |
| 7394 | ||
| 7395 | /\w*a/BZ | /\w*a/BZ |
| 7396 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7397 | Bra 0 | Bra |
| 7398 | \w* | \w* |
| 7399 | a | a |
| 7400 | Ket | Ket |
| # | Line 7221 Matched, but too many substrings | Line 7403 Matched, but too many substrings |
| 7403 | ||
| 7404 | /\w*2/BZ | /\w*2/BZ |
| 7405 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7406 | Bra 0 | Bra |
| 7407 | \w* | \w* |
| 7408 | 2 | 2 |
| 7409 | Ket | Ket |
| # | Line 7230 Matched, but too many substrings | Line 7412 Matched, but too many substrings |
| 7412 | ||
| 7413 | /\w*\d/BZ | /\w*\d/BZ |