Parent Directory
|
Revision Log
|
Patch
| revision 271 by ph10, Fri Nov 16 19:58:26 2007 UTC | revision 760 by ph10, Tue Nov 22 11:23:43 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 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 113 Failed: unrecognized character after (? | Line 150 Failed: unrecognized character after (? |
| 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 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) |
| # | Line 601 Need char = 'h' (caseless) | Line 632 Need char = 'h' (caseless) |
| 632 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 633 | Bra | Bra |
| 634 | CBra 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 |
| # | Line 784 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 854 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 866 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 1003 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 1021 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 1036 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 1103 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 |
| Partial matching not supported | ||
| 1159 | Contains explicit CR or LF match | Contains explicit CR or LF match |
| 1160 | No options | No options |
| 1161 | First char = 'w' | First char = 'w' |
| # | Line 1118 Need char = 'd' | Line 1170 Need char = 'd' |
| 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' |
| # | Line 1126 Need char = 'X' | Line 1177 Need char = 'X' |
| 1177 | /.*X/IDZs | /.*X/IDZs |
| 1178 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1179 | Bra | 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' |
| # | 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 |
| # | Line 1160 No need char | Line 1209 No need char |
| 1209 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1210 | Bra | Bra |
| 1211 | CBra 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 |
| # | Line 1179 No need char | Line 1227 No need char |
| 1227 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1228 | Bra | Bra |
| 1229 | CBra 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 |
| # | Line 1198 No need char | Line 1245 No need char |
| 1245 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 1246 | Bra | Bra |
| 1247 | Bra | 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 1399 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 1489 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 1565 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 1591 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' |
| # | Line 1666 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 1698 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 1709 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 1738 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 1753 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 1772 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 1783 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 1793 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 1804 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 1821 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 1838 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 1858 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 1866 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 1942 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 | ||
| # | Line 2003 Contains explicit CR or LF match | Line 2016 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 |
| # | Line 2249 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 2746 No need char | Line 2759 No need char |
| 2759 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2760 | Bra | Bra |
| 2761 | a | a |
| 2762 | 01 Opt | /i b |
| NC b | ||
| 2763 | Ket | Ket |
| 2764 | End | End |
| 2765 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 2769 No match | Line 2781 No match |
| 2781 | Bra | Bra |
| 2782 | CBra 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 2794 No match | Line 2804 No match |
| 2804 | / (?i)abc/IxDZ | / (?i)abc/IxDZ |
| 2805 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2806 | Bra | Bra |
| 2807 | NC abc | /i abc |
| 2808 | Ket | Ket |
| 2809 | End | End |
| 2810 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 2807 Need char = 'c' (caseless) | Line 2817 Need char = 'c' (caseless) |
| 2817 | (?i)abc/IxDZ | (?i)abc/IxDZ |
| 2818 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2819 | Bra | Bra |
| 2820 | NC abc | /i abc |
| 2821 | Ket | Ket |
| 2822 | End | End |
| 2823 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 2930 Need char = 'c' | Line 2940 Need char = 'c' |
| 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 2959 No need char | Line 2968 No need char |
| 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 |
| # | Line 2975 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 |
| # | Line 2983 No need char | Line 2990 No need char |
| 2990 | /(x)*+/DZ | /(x)*+/DZ |
| 2991 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 2992 | Bra | Bra |
| 2993 | Once | Braposzero |
| 2994 | Brazero | CBraPos 1 |
| CBra 1 | ||
| 2995 | x | x |
| 2996 | KetRmax | KetRpos |
| Ket | ||
| 2997 | Ket | Ket |
| 2998 | End | End |
| 2999 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 2999 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 3013 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 3028 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 3037 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 3047 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 3057 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 3067 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 3130 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 3147 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 3176 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 |
| # | Line 3192 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' |
| # | Line 3210 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 3225 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 3286 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 3336 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 3351 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 3366 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 3374 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 3391 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 3497 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 3516 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 3549 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 3556 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 3591 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 3713 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 3842 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 3868 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 3909 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 3997 Need char = '<' | Line 4004 Need char = '<' |
| 4004 | Bra | Bra |
| 4005 | CBra 1 | CBra 1 |
| 4006 | a | a |
| Once | ||
| 4007 | Recurse | Recurse |
| Ket | ||
| 4008 | b | b |
| 4009 | Ket | Ket |
| 4010 | Ket | Ket |
| # | Line 4028 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 4105 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 4256 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 4279 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 4325 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 4333 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 4341 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 4356 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 4364 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 4372 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 4380 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 4395 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 4403 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 |
| # | Line 4470 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 4607 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 4625 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 4645 Need char = ']' | Line 4597 Need char = ']' |
| 4597 | a | a |
| 4598 | CBra 2 | CBra 2 |
| 4599 | b | b |
| Once | ||
| 4600 | Recurse | Recurse |
| Ket | ||
| 4601 | c | c |
| 4602 | Ket | Ket |
| 4603 | Ket | Ket |
| # | Line 4667 No need char | Line 4617 No need char |
| 4617 | a | a |
| 4618 | CBra 2 | CBra 2 |
| 4619 | b | b |
| Once | ||
| 4620 | Recurse | Recurse |
| Ket | ||
| 4621 | c | c |
| 4622 | Ket | Ket |
| 4623 | KetRmax | KetRmax |
| # | Line 4690 No need char | Line 4638 No need char |
| 4638 | a | a |
| 4639 | CBra 2 | CBra 2 |
| 4640 | b | b |
| Once | ||
| 4641 | Recurse | Recurse |
| Ket | ||
| 4642 | c | c |
| 4643 | Ket | Ket |
| 4644 | Ket | Ket |
| # | Line 4701 No need char | Line 4647 No need char |
| 4647 | a | a |
| 4648 | CBra 2 | CBra 2 |
| 4649 | b | b |
| Once | ||
| 4650 | Recurse | Recurse |
| Ket | ||
| 4651 | c | c |
| 4652 | Ket | Ket |
| 4653 | Ket | Ket |
| # | Line 4732 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 4742 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!! |
| # | Line 4761 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 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 4785 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 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 4842 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 | Bra |
| 4836 | Callout 255 0 2 | Callout 255 0 2 |
| # | Line 4854 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 4899 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 4927 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 | Bra |
| 4995 | Callout 255 0 9 | Callout 255 0 9 |
| # | Line 4981 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 5081 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 | Bra |
| 5151 | Callout 255 0 14 | Callout 255 0 14 |
| # | Line 5114 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 | +0 ^ ([ab]{,4}c|xy) | +1 ^ [ab] |
| 5195 | +1 ^ [ab] | +5 ^^ { |
| 5196 | +11 ^ x | +11 ^ x |
| 5197 | +0 ^ ([ab]{,4}c|xy) | No match |
| 5198 | +1 ^ [ab] | |
| 5199 | +11 ^ x | /([ab]{,4}c|xy)/ICDZSS |
| 5200 | +0 ^ ([ab]{,4}c|xy) | ------------------------------------------------------------------ |
| 5201 | +1 ^ [ab] | Bra |
| 5202 | +11 ^ x | Callout 255 0 14 |
| 5203 | +0 ^ ([ab]{,4}c|xy) | CBra 1 |
| 5204 | +1 ^ [ab] | Callout 255 1 4 |
| 5205 | +11 ^ x | [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) | |
| 5244 | +1 ^ [ab] | |
| 5245 | +11 ^ x | |
| 5246 | +0 ^ ([ab]{,4}c|xy) | |
| 5247 | +1 ^ [ab] | |
| 5248 | +11 ^ x | |
| 5249 | +0 ^ ([ab]{,4}c|xy) | |
| 5250 | +1 ^ [ab] | |
| 5251 | +11 ^ x | |
| 5252 | +0 ^ ([ab]{,4}c|xy) | |
| 5253 | +1 ^ [ab] | |
| 5254 | +11 ^ x | |
| 5255 | +0 ^ ([ab]{,4}c|xy) | +0 ^ ([ab]{,4}c|xy) |
| 5256 | +1 ^ [ab] | +1 ^ [ab] |
| 5257 | +11 ^ x | +11 ^ x |
| # | Line 5337 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 5369 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 5378 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 5387 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 5400 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 5433 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 5471 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 5505 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 5521 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 5541 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 5557 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 5578 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 5593 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 5613 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 5669 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 5679 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 5923 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 5936 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 5947 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 5958 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 5971 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 5984 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 6313 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 6443
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 6469 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 6486 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 6621 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 6632 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 6639 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 6646 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 6653 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 6660 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 6667 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 |
| # | Line 6680 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' |
| # | Line 6696 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' |
| # | Line 6712 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' |
| # | Line 6728 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 6743 No match | Line 6919 No match |
| 6919 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 6920 | Bra | 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 6761 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 7373 Matched, but too many substrings | Line 7548 Matched, but too many substrings |
| 7548 | /[^a]+a/BZi | /[^a]+a/BZi |
| 7549 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7550 | Bra | Bra |
| 7551 | [^A]++ | /i [^A]++ |
| 7552 | NC a | /i a |
| 7553 | Ket | Ket |
| 7554 | End | End |
| 7555 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 7382 Matched, but too many substrings | Line 7557 Matched, but too many substrings |
| 7557 | /[^a]+A/BZi | /[^a]+A/BZi |
| 7558 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7559 | Bra | Bra |
| 7560 | [^A]++ | /i [^A]++ |
| 7561 | NC A | /i A |
| 7562 | Ket | Ket |
| 7563 | End | End |
| 7564 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| # | Line 7578 No match | Line 7753 No match |
| 7753 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7754 | Bra | Bra |
| 7755 | ^ | ^ |
| Once | ||
| 7756 | Recurse | Recurse |
| Ket | ||
| 7757 | [()] | [()] |
| 7758 | CBra 1 | CBra 1 |
| 7759 | Ket | Ket |
| # | Line 7594 No match | Line 7767 No match |
| 7767 | ^ | ^ |
| 7768 | CBra 1 | CBra 1 |
| 7769 | Cond | Cond |
| 7770 | 2 Cond ref | 2 Cond nref |
| 7771 | y | y |
| 7772 | Ket | Ket |
| 7773 | [()] | [()] |
| # | Line 7614 No match | Line 7787 No match |
| 7787 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7788 | Bra | Bra |
| 7789 | ^ | ^ |
| Once | ||
| 7790 | Recurse | Recurse |
| Ket | ||
| 7791 | () | () |
| 7792 | CBra 1 | CBra 1 |
| 7793 | Ket | Ket |
| # | Line 7628 No match | Line 7799 No match |
| 7799 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7800 | Bra | Bra |
| 7801 | ^ | ^ |
| Once | ||
| 7802 | Recurse | Recurse |
| Ket | ||
| 7803 | [(\]a] | [(\]a] |
| 7804 | CBra 1 | CBra 1 |
| 7805 | Ket | Ket |
| # | Line 7643 No match | Line 7812 No match |
| 7812 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 7813 | Bra | Bra |
| 7814 | ^ | ^ |
| Once | ||
| 7815 | Recurse | Recurse |
| Ket | ||
| 7816 | CBra 1 | CBra 1 |
| 7817 | Ket | Ket |
| 7818 | Ket | Ket |
| # | Line 7660 Named capturing subpatterns: | Line 7827 Named capturing subpatterns: |
| 7827 | one 1 | one 1 |
| 7828 | three 3 | three 3 |
| 7829 | two 2 | two 2 |
| Partial matching not supported | ||
| 7830 | Options: anchored caseless | Options: anchored caseless |
| 7831 | No first char | No first char |
| 7832 | No need char | No need char |
| # | Line 7694 No match | Line 7860 No match |
| 7860 | /(?=(\w+))\1:/I | /(?=(\w+))\1:/I |
| 7861 | Capturing subpattern count = 1 | Capturing subpattern count = 1 |
| 7862 | Max back reference = 1 | Max back reference = 1 |
| Partial matching not supported | ||
| 7863 | No options | No options |
| 7864 | No first char | No first char |
| 7865 | Need char = ':' | Need char = ':' |
| # | Line 7707 Capturing subpattern count = 1 | Line 7872 Capturing subpattern count = 1 |
| 7872 | Max back reference = 1 | Max back reference = 1 |
| 7873 | Named capturing subpatterns: | Named capturing subpatterns: |
| 7874 | abc 1 | abc 1 |
| Partial matching not supported | ||
| 7875 | No options | No options |
| 7876 | No first char | No first char |
| 7877 | Need char = ':' | Need char = ':' |
| # | Line 7715 Need char = ':' | Line 7879 Need char = ':' |
| 7879 | 0: abcd: | 0: abcd: |
| 7880 | 1: abcd | 1: abcd |
| 7881 | ||
| /(?'abc'\w+):\k<abc>{2}/ | ||
| a:aaxyz | ||
| 0: a:aa | ||
| 1: a | ||
| ab:ababxyz | ||
| 0: ab:abab | ||
| 1: ab | ||
| ** Failers | ||
| No match | ||
| a:axyz | ||
| No match | ||
| ab:abxyz | ||
| No match | ||
| 7882 | /(?'abc'a|b)(?<abc>d|e)\k<abc>{2}/J | /(?'abc'a|b)(?<abc>d|e)\k<abc>{2}/J |
| 7883 | adaa | adaa |
| 7884 | 0: adaa | 0: adaa |
| # | Line 7755 No match | Line 7905 No match |
| 7905 | bddd | bddd |
| 7906 | No match | No match |
| 7907 | ||
| /^(?<ab>a)? (?(<ab>)b|c) (?('ab')d|e)/x | ||
| abd | ||
| 0: abd | ||
| 1: a | ||
| ce | ||
| 0: ce | ||
| 7908 | /(?(<bc))/ | /(?(<bc))/ |
| 7909 | Failed: malformed number or name after (?( at offset 6 | Failed: malformed number or name after (?( at offset 6 |
| 7910 | ||
| # | Line 7792 Failed: reference to non-existent subpat | Line 7935 Failed: reference to non-existent subpat |
| 7935 | 1: abcabc1Xabc2XabcX | 1: abcabc1Xabc2XabcX |
| 7936 | 2: abcabc1Xabc2XabcX | 2: abcabc1Xabc2XabcX |
| 7937 | ||
| /^(?(DEFINE) (?<A> a) (?<B> b) ) (?&A) (?&B) /x | ||
| abcd | ||
| 0: ab | ||
| 1: <unset> | ||
| 2: <unset> | ||
| /(?<NAME>(?&NAME_PAT))\s+(?<ADDR>(?&ADDRESS_PAT)) | ||
| (?(DEFINE) | ||
| (?<NAME_PAT>[a-z]+) | ||
| (?<ADDRESS_PAT>\d+) | ||
| )/x | ||
| metcalfe 33 | ||
| 0: metcalfe 33 | ||
| 1: metcalfe | ||
| 2: 33 | ||
| 3: <unset> | ||
| 4: <unset> | ||
| 7938 | /^(?(DEFINE) abc | xyz ) /x | /^(?(DEFINE) abc | xyz ) /x |
| 7939 | Failed: DEFINE group contains more than one branch at offset 22 | Failed: DEFINE group contains more than one branch at offset 22 |
| 7940 | ||
| # | Line 7819 Options: extended | Line 7944 Options: extended |
| 7944 | First char = 'x' | First char = 'x' |
| 7945 | Need char = 'z' | Need char = 'z' |
| 7946 | ||
| /(?(DEFINE) abc){3} xyz/x | ||
| Failed: repeating a DEFINE group is not allowed at offset 17 | ||
| 7947 | /(a|)*\d/ | /(a|)*\d/ |
| 7948 | \O0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa | \O0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa |
| 7949 | No match | No match |
| # | Line 7851 No match | Line 7973 No match |
| 7973 | No match | No match |
| 7974 | ||
| 7975 | /^abc./mgx<any> | /^abc./mgx<any> |
| 7976 | abc1 \x0aabc2 \x0babc3xx \x0cabc4 \x0dabc5xx \x0d\x0aabc6 \x85abc7 \x{2028}abc8 \x{2029}abc9 JUNK | abc1 \x0aabc2 \x0babc3xx \x0cabc4 \x0dabc5xx \x0d\x0aabc6 \x85abc7 JUNK |
| 7977 | 0: abc1 | 0: abc1 |
| 7978 | 0: abc2 | 0: abc2 |
| 7979 | 0: abc3 | 0: abc3 |
| # | Line 7861 No match | Line 7983 No match |
| 7983 | 0: abc7 | 0: abc7 |
| 7984 | ||
| 7985 | /abc.$/mgx<any> | /abc.$/mgx<any> |
| 7986 | abc1\x0a abc2\x0b abc3\x0c abc4\x0d abc5\x0d\x0a abc6\x85 abc7\x{2028} abc8\x{2029} abc9 | abc1\x0a abc2\x0b abc3\x0c abc4\x0d abc5\x0d\x0a abc6\x85 abc7 abc9 |
| 7987 | 0: abc1 | 0: abc1 |
| 7988 | 0: abc2 | 0: abc2 |
| 7989 | 0: abc3 | 0: abc3 |
| # | Line 7987 Need char = 'P' | Line 8109 Need char = 'P' |
| 8109 | 0: PXP | 0: PXP |
| 8110 | 1: P | 1: P |
| 8111 | ||
| /(?(DEFINE)(?<byte>2[0-4]\d|25[0-5]|1\d\d|[1-9]?\d))\b(?&byte)(\.(?&byte)){3}/ | ||
| 1.2.3.4 | ||
| 0: 1.2.3.4 | ||
| 1: <unset> | ||
| 2: .4 | ||
| 131.111.10.206 | ||
| 0: 131.111.10.206 | ||
| 1: <unset> | ||
| 2: .206 | ||
| 10.0.0.0 | ||
| 0: 10.0.0.0 | ||
| 1: <unset> | ||
| 2: .0 | ||
| ** Failers | ||
| No match | ||
| 10.6 | ||
| No match | ||
| 455.3.4.5 | ||
| No match | ||
| /\b(?&byte)(\.(?&byte)){3}(?(DEFINE)(?<byte>2[0-4]\d|25[0-5]|1\d\d|[1-9]?\d))/ | ||
| 1.2.3.4 | ||
| 0: 1.2.3.4 | ||
| 1: .4 | ||
| 2: <unset> | ||
| 131.111.10.206 | ||
| 0: 131.111.10.206 | ||
| 1: .206 | ||
| 2: <unset> | ||
| 10.0.0.0 | ||
| 0: 10.0.0.0 | ||
| 1: .0 | ||
| 2: <unset> | ||
| ** Failers | ||
| No match | ||
| 10.6 | ||
| No match | ||
| 455.3.4.5 | ||
| No match | ||
| 8112 | /(?:a(?&abc)b)*(?<abc>x)/ | /(?:a(?&abc)b)*(?<abc>x)/ |
| 8113 | 123axbaxbaxbx456 | 123axbaxbaxbx456 |
| 8114 | 0: axbaxbaxbx | 0: axbaxbaxbx |
| # | Line 8064 No match | Line 8146 No match |
| 8146 | DEFabcABCXYZ | DEFabcABCXYZ |
| 8147 | No match | No match |
| 8148 | ||
| /^(a(b))\1\g1\g{1}\g-1\g{-1}\g{-02}Z/ | ||
| ababababbbabZXXXX | ||
| 0: ababababbbabZ | ||
| 1: ab | ||
| 2: b | ||
| 8149 | /^(a)\g-2/ | /^(a)\g-2/ |
| 8150 | Failed: reference to non-existent subpattern at offset 7 | Failed: reference to non-existent subpattern at offset 7 |
| 8151 | ||
| 8152 | /^(a)\g/ | /^(a)\g/ |
| 8153 | Failed: \g is not followed by a braced name or an optionally braced non-zero number at offset 5 | Failed: a numbered reference must not be zero at offset 5 |
| 8154 | ||
| 8155 | /^(a)\g{0}/ | /^(a)\g{0}/ |
| 8156 | Failed: \g is not followed by a braced name or an optionally braced non-zero number at offset 7 | Failed: a numbered reference must not be zero at offset 8 |
| 8157 | ||
| 8158 | /^(a)\g{3/ | /^(a)\g{3/ |
| 8159 | Failed: \g is not followed by a braced name or an optionally braced non-zero number at offset 8 | Failed: \g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number at offset 8 |
| 8160 | ||
| 8161 | /^(a)\g{4a}/ | /^(a)\g{4a}/ |
| 8162 | Failed: reference to non-existent subpattern at offset 9 | Failed: reference to non-existent subpattern at offset 9 |
| # | Line 8163 No match | Line 8239 No match |
| 8239 | 0+ | 0+ |
| 8240 | ||
| 8241 | /abc.$/mgx<anycrlf> | /abc.$/mgx<anycrlf> |
| 8242 | abc1\x0a abc2\x0b abc3\x0c abc4\x0d abc5\x0d\x0a abc6\x85 abc7\x{2028} abc8\x{2029} abc9 | abc1\x0a abc2\x0b abc3\x0c abc4\x0d abc5\x0d\x0a abc6\x85 abc9 |
| 8243 | 0: abc1 | 0: abc1 |
| 8244 | 0: abc4 | 0: abc4 |
| 8245 | 0: abc5 | 0: abc5 |
| # | Line 8185 No match | Line 8261 No match |
| 8261 | Alt | Alt |
| 8262 | c | c |
| 8263 | Ket | Ket |
| Once | ||
| 8264 | Recurse | Recurse |
| 8265 | Ket | Ket |
| Ket | ||
| 8266 | End | End |
| 8267 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 8268 | abc | abc |
| # | Line 8199 No match | Line 8273 No match |
| 8273 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 8274 | Bra | Bra |
| 8275 | xy | xy |
| Once | ||
| 8276 | Recurse | Recurse |
| Ket | ||
| 8277 | CBra 1 | CBra 1 |
| 8278 | abc | abc |
| 8279 | Ket | Ket |
| # | Line 8217 No match | Line 8289 No match |
| 8289 | No match | No match |
| 8290 | ||
| 8291 | /x(?-0)y/ | /x(?-0)y/ |
| 8292 | Failed: (?+ or (?- or (?(+ or (?(- must be followed by a non-zero number at offset 5 | Failed: a numbered reference must not be zero at offset 5 |
| 8293 | ||
| 8294 | /x(?-1)y/ | /x(?-1)y/ |
| 8295 | Failed: reference to non-existent subpattern at offset 5 | Failed: reference to non-existent subpattern at offset 5 |
| 8296 | ||
| 8297 | /x(?+0)y/ | /x(?+0)y/ |
| 8298 | Failed: (?+ or (?- or (?(+ or (?(- must be followed by a non-zero number at offset 5 | Failed: a numbered reference must not be zero at offset 5 |
| 8299 | ||
| 8300 | /x(?+1)y/ | /x(?+1)y/ |
| 8301 | Failed: reference to non-existent subpattern at offset 5 | Failed: reference to non-existent subpattern at offset 5 |
| # | Line 8325 Failed: reference to non-existent subpat | Line 8397 Failed: reference to non-existent subpat |
| 8397 | 0: Y! | 0: Y! |
| 8398 | 1: ! | 1: ! |
| 8399 | ||
| /(foo)\Kbar/ | ||
| foobar | ||
| 0: bar | ||
| 1: foo | ||
| /(foo)(\Kbar|baz)/ | ||
| foobar | ||
| 0: bar | ||
| 1: foo | ||
| 2: bar | ||
| foobaz | ||
| 0: foobaz | ||
| 1: foo | ||
| 2: baz | ||
| /(foo\Kbar)baz/ | ||
| foobarbaz | ||
| 0: barbaz | ||
| 1: foobar | ||
| 8400 | /(?<A>tom|bon)-\k{A}/ | /(?<A>tom|bon)-\k{A}/ |
| 8401 | tom-tom | tom-tom |
| 8402 | 0: tom-tom | 0: tom-tom |
| # | Line 8357 No match | Line 8409 No match |
| 8409 | tom-bon | tom-bon |
| 8410 | No match | No match |
| 8411 | ||
| /(?<A>tom|bon)-\g{A}/ | ||
| tom-tom | ||
| 0: tom-tom | ||
| 1: tom | ||
| bon-bon | ||
| 0: bon-bon | ||
| 1: bon | ||
| 8412 | /\g{A/ | /\g{A/ |
| 8413 | Failed: syntax error in subpattern name (missing terminator) at offset 4 | Failed: syntax error in subpattern name (missing terminator) at offset 4 |
| 8414 | ||
| # | Line 8459 Failed: syntax error in subpattern name | Line 8503 Failed: syntax error in subpattern name |
| 8503 | 3: <unset> | 3: <unset> |
| 8504 | 4: x | 4: x |
| 8505 | ||
| /(?|(abc)|(xyz))\1/ | ||
| abcabc | ||
| 0: abcabc | ||
| 1: abc | ||
| xyzxyz | ||
| 0: xyzxyz | ||
| 1: xyz | ||
| ** Failers | ||
| No match | ||
| abcxyz | ||
| No match | ||
| xyzabc | ||
| No match | ||
| /(?|(abc)|(xyz))(?1)/ | ||
| abcabc | ||
| 0: abcabc | ||
| 1: abc | ||
| xyzabc | ||
| 0: xyzabc | ||
| 1: xyz | ||
| ** Failers | ||
| No match | ||
| xyzxyz | ||
| No match | ||
| /\H\h\V\v/ | ||
| X X\x0a | ||
| 0: X X\x0a | ||
| X\x09X\x0b | ||
| 0: X\x09X\x0b | ||
| ** Failers | ||
| No match | ||
| \xa0 X\x0a | ||
| No match | ||
| /\H*\h+\V?\v{3,4}/ | ||
| \x09\x20\xa0X\x0a\x0b\x0c\x0d\x0a | ||
| 0: \x09 \xa0X\x0a\x0b\x0c\x0d | ||
| \x09\x20\xa0\x0a\x0b\x0c\x0d\x0a | ||
| 0: \x09 \xa0\x0a\x0b\x0c\x0d | ||
| \x09\x20\xa0\x0a\x0b\x0c | ||
| 0: \x09 \xa0\x0a\x0b\x0c | ||
| ** Failers | ||
| No match | ||
| \x09\x20\xa0\x0a\x0b | ||
| No match | ||
| /\H{3,4}/ | ||
| XY ABCDE | ||
| 0: ABCD | ||
| XY PQR ST | ||
| 0: PQR | ||
| /.\h{3,4}./ | ||
| XY AB PQRS | ||
| 0: B P | ||
| /\h*X\h?\H+Y\H?Z/ | ||
| >XNNNYZ | ||
| 0: XNNNYZ | ||
| > X NYQZ | ||
| 0: X NYQZ | ||
| ** Failers | ||
| No match | ||
| >XYZ | ||
| No match | ||
| > X NY Z | ||
| No match | ||
| /\v*X\v?Y\v+Z\V*\x0a\V+\x0b\V{2,3}\x0c/ | ||
| >XY\x0aZ\x0aA\x0bNN\x0c | ||
| 0: XY\x0aZ\x0aA\x0bNN\x0c | ||
| >\x0a\x0dX\x0aY\x0a\x0bZZZ\x0aAAA\x0bNNN\x0c | ||
| 0: \x0a\x0dX\x0aY\x0a\x0bZZZ\x0aAAA\x0bNNN\x0c | ||
| 8506 | /[\h]/BZ | /[\h]/BZ |
| 8507 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 8508 | Bra | Bra |
| # | Line 8786 No match | Line 8754 No match |
| 8754 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 8755 | ||
| 8756 | /\( (?: [^()]* | (?R) )* \)/x | /\( (?: [^()]* | (?R) )* \)/x |
| 8757 | (0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(00)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0) | \J1024(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(00)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0) |
| 8758 | 0: (0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(00)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0) | 0: (0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(0(00)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0)0) |
| 8759 | ||
| 8760 | /[\E]AAA/ | /[\E]AAA/ |
| # | Line 8831 Failed: missing terminating ] for charac | Line 8799 Failed: missing terminating ] for charac |
| 8799 | End | End |
| 8800 | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| 8801 | ||
| /^a+(*FAIL)/ | ||
| aaaaaa | ||
| No match | ||
| /a+b?c+(*FAIL)/ | ||
| aaabccc | ||
| No match | ||
| /a+b?(*PRUNE)c+(*FAIL)/ | ||
| aaabccc | ||
| No match | ||
| /a+b?(*COMMIT)c+(*FAIL)/ | ||
| aaabccc | ||
| No match | ||
| /a+b?(*SKIP)c+(*FAIL)/ | ||
| aaabcccaaabccc | ||
| No match | ||
| /^(?:aaa(*THEN)\w{6}|bbb(*THEN)\w{5}|ccc(*THEN)\w{4}|\w{3})/ | ||
| aaaxxxxxx | ||
| 0: aaaxxxxxx | ||
| aaa++++++ | ||
| 0: aaa | ||
| bbbxxxxx | ||
| 0: bbbxxxxx | ||
| bbb+++++ | ||
| 0: bbb | ||
| cccxxxx | ||
| 0: cccxxxx | ||
| ccc++++ | ||
| 0: ccc | ||
| dddddddd | ||
| 0: ddd | ||
| /^(aaa(*THEN)\w{6}|bbb(*THEN)\w{5}|ccc(*THEN)\w{4}|\w{3})/ | ||
| aaaxxxxxx | ||
| 0: aaaxxxxxx | ||
| 1: aaaxxxxxx | ||
| aaa++++++ | ||
| 0: aaa | ||
| 1: aaa | ||
| bbbxxxxx | ||
| 0: bbbxxxxx | ||
| 1: bbbxxxxx | ||
| bbb+++++ | ||
| 0: bbb | ||
| 1: bbb | ||
| cccxxxx | ||
| 0: cccxxxx | ||
| 1: cccxxxx | ||
| ccc++++ | ||
| 0: ccc | ||
| 1: ccc | ||
| dddddddd | ||
| 0: ddd | ||
| 1: ddd | ||
| /a+b?(*THEN)c+(*FAIL)/ | ||
| aaabccc | ||
| No match | ||
| /(A (A|B(*ACCEPT)|C) D)(E)/x | ||
| ABX | ||
| 0: AB | ||
| AADE | ||
| 0: AADE | ||
| 1: AAD | ||
| 2: A | ||
| 3: E | ||
| ACDE | ||
| 0: ACDE | ||
| 1: ACD | ||
| 2: C | ||
| 3: E | ||
| ** Failers | ||
| No match | ||
| AD | ||
| No match | ||
| 8802 | /^a+(*FAIL)/C | /^a+(*FAIL)/C |
| 8803 | aaaaaa | aaaaaa |
| 8804 | --->aaaaaa | --->aaaaaa |
| # | Line 9040 No match | Line 8927 No match |
| 8927 | +13 ^ ^ (*FAIL) | +13 ^ ^ (*FAIL) |
| 8928 | No match | No match |
| 8929 | ||
| /a(*PRUNE:XXX)b/ | ||
| Failed: (*VERB) with an argument is not supported at offset 8 | ||
| 8930 | /a(*MARK)b/ | /a(*MARK)b/ |
| 8931 | Failed: (*VERB) not recognized at offset 7 | Failed: (*MARK) must have an argument at offset 7 |
| 8932 | ||
| 8933 | /(?i:A{1,}\6666666666)/ | /(?i:A{1,}\6666666666)/ |
| 8934 | Failed: number is too big at offset 19 | Failed: number is too big at offset 19 |
| # | Line 9052 Failed: number is too big at offset 19 | Line 8936 Failed: number is too big at offset 19 |
| 8936 | /\g6666666666/ | /\g6666666666/ |
| 8937 | Failed: number is too big at offset 11 | Failed: number is too big at offset 11 |
| 8938 | ||
| 8939 | /[\g6666666666]/ | /[\g6666666666]/BZ |
| 8940 | Failed: number is too big at offset 12 | ------------------------------------------------------------------ |
| 8941 | Bra | |
| 8942 | /(?1)\c[/ | [6g] |
| 8943 | Failed: reference to non-existent subpattern at offset 3 | Ket |
| 8944 | End | |
| 8945 | ------------------------------------------------------------------ | |
| 8946 | ||
| 8947 | /(?1)\c[/ | |
| 8948 | Failed: reference to non-existent subpattern at offset 3 | |
| 8949 | ||
| 8950 | /.+A/<crlf> | /.+A/<crlf> |
| 8951 | \r\nA | \r\nA |
| 8952 | No match | No match |
| # | Line 9133 No match | Line 9022 No match |
| 9022 | No match | No match |
| 9023 | a\x85b | a\x85b |
| 9024 | No match | No match |
| 9025 | ||
| 9026 | /(*ANY).*/g | |
| 9027 | abc\r\ndef | |
| 9028 | 0: abc | |
| 9029 | 0: | |
| 9030 | 0: def | |
| 9031 | 0: | |
| 9032 | ||
| 9033 | /(*ANYCRLF).*/g | |
| 9034 | abc\r\ndef | |
| 9035 | 0: abc | |
| 9036 | 0: | |
| 9037 | 0: def | |
| 9038 | 0: | |
| 9039 | ||
| 9040 | /(*CRLF).*/g | |
| 9041 | abc\r\ndef | |
| 9042 | 0: abc | |
| 9043 | 0: | |
| 9044 | 0: def | |
| 9045 | 0: | |
| 9046 | ||
| 9047 | /a\Rb/I<bsr_anycrlf> | /a\Rb/I<bsr_anycrlf> |
| 9048 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| # | Line 9216 No match | Line 9126 No match |
| 9126 | ||
| 9127 | /a\R{2,4}b/I<bsr_anycrlf> | /a\R{2,4}b/I<bsr_anycrlf> |
| 9128 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 9129 | Options: bsr_anycrlf | Options: bsr_anycrlf |
| 9130 | First char = 'a' | First char = 'a' |
| 9131 | Need char = 'b' | Need char = 'b' |
| # | Line 9235 No match | Line 9144 No match |
| 9144 | ||
| 9145 | /a\R{2,4}b/I<bsr_unicode> | /a\R{2,4}b/I<bsr_unicode> |
| 9146 | Capturing subpattern count = 0 | Capturing subpattern count = 0 |
| Partial matching not supported | ||
| 9147 | Options: bsr_unicode | Options: bsr_unicode |
| 9148 | First char = 'a' | First char = 'a' |
| 9149 | Need char = 'b' | Need char = 'b' |
| # | Line 9304 First char = 'a' | Line 9212 First char = 'a' |
| 9212 | Need char = 'b' | Need char = 'b' |
| 9213 | ||
| 9214 | /(?<a>)(?&)/ | /(?<a>)(?&)/ |
| 9215 | Failed: subpattern name expected after (?& at offset 9 | Failed: subpattern name expected at offset 9 |
| 9216 | ||
| 9217 | /(?<abc>)(?&a)/ | /(?<abc>)(?&a)/ |
| 9218 | Failed: reference to non-existent subpattern at offset 12 | Failed: reference to non-existent subpattern at offset 12 |
| # | Line 9331 Failed: reference to non-existent subpat | Line 9239 Failed: reference to non-existent subpat |
| 9239 | ||
| 9240 | /(?(2))()()/ | /(?(2))()()/ |
| 9241 | ||
| 9242 | / End of testinput2 / | /\k''/ |
| 9243 | Failed: subpattern name expected at offset 3 | |
| 9244 | ||
| 9245 | /\k<>/ | |
| 9246 | Failed: subpattern name expected at offset 3 | |
| 9247 | ||
| 9248 | /\k{}/ | |
| 9249 | Failed: subpattern name expected at offset 3 | |
| 9250 | ||
| 9251 | /\k/ | |
| 9252 | Failed: \k is not followed by a braced, angle-bracketed, or quoted name at offset 2 | |
| 9253 | ||
| 9254 | /\kabc/ | |
| 9255 | Failed: \k is not followed by a braced, angle-bracketed, or quoted name at offset 5 | |
| 9256 | ||
| 9257 | /(?P=)/ | |
| 9258 | Failed: subpattern name expected at offset 4 | |
| 9259 | ||
| 9260 | /(?P>)/ | |
| 9261 | Failed: subpattern name expected at offset 4 | |
| 9262 | ||
| 9263 | /(?!\w)(?R)/ | |
| 9264 | Failed: recursive call could loop indefinitely at offset 9 | |
| 9265 | ||
| 9266 | /(?=\w)(?R)/ | |
| 9267 | Failed: recursive call could loop indefinitely at offset 9 | |
| 9268 | ||
| 9269 | /(?<!\w)(?R)/ | |
| 9270 | Failed: recursive call could loop indefinitely at offset 10 | |
| 9271 | ||
| 9272 | /(?<=\w)(?R)/ | |
| 9273 | Failed: recursive call could loop indefinitely at offset 10 | |
| 9274 | ||
| 9275 | /[[:foo:]]/ | |
| 9276 | Failed: unknown POSIX class name at offset 3 | |
| 9277 | ||
| 9278 | /[[:1234:]]/ | |
| 9279 | Failed: unknown POSIX class name at offset 3 | |
| 9280 | ||
| 9281 | /[[:f\oo:]]/ | |
| 9282 | Failed: unknown POSIX class name at offset 3 | |
| 9283 | ||
| 9284 | /[[: :]]/ | |
| 9285 | Failed: unknown POSIX class name at offset 3 | |
| 9286 | ||
| 9287 | /[[:...:]]/ | |
| 9288 | Failed: unknown POSIX class name at offset 3 | |
| 9289 | ||
| 9290 | /[[:l\ower:]]/ | |
| 9291 | Failed: unknown POSIX class name at offset 3 | |
| 9292 | ||
| 9293 | /[[:abc\:]]/ | |
| 9294 | Failed: unknown POSIX class name at offset 3 | |
| 9295 | ||
| 9296 | /[abc[:x\]pqr:]]/ | |
| 9297 | Failed: unknown POSIX class name at offset 6 | |
| 9298 | ||
| 9299 | /[[:a\dz:]]/ | |
| 9300 | Failed: unknown POSIX class name at offset 3 | |
| 9301 | ||
| 9302 | /(^(a|b\g<-1'c))/ | |
| 9303 | Failed: \g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number at offset 15 | |
| 9304 | ||
| 9305 | /^(?+1)(?<a>x|y){0}z/ | |
| 9306 | xzxx | |
| 9307 | 0: xz | |
| 9308 | yzyy | |
| 9309 | 0: yz | |
| 9310 | ** Failers | |
| 9311 | No match | |
| 9312 | xxz | |
| 9313 | No match | |
| 9314 | ||
| 9315 | /(\3)(\1)(a)/ | |
| 9316 | cat | |
| 9317 | No match | |
| 9318 | ||
| 9319 | /(\3)(\1)(a)/<JS> | |
| 9320 | cat | |
| 9321 | 0: a | |
| 9322 | 1: | |
| 9323 | 2: | |
| 9324 | 3: a | |
| 9325 | ||
| 9326 | /TA]/ | |
| 9327 | The ACTA] comes | |
| 9328 | 0: TA] | |
| 9329 | ||
| 9330 | /TA]/<JS> | |
| 9331 | Failed: ] is an invalid data character in JavaScript compatibility mode at offset 2 | |
| 9332 | ||
| 9333 | /(?2)[]a()b](abc)/ | |
| 9334 | Failed: reference to non-existent subpattern at offset 3 | |
| 9335 | ||
| 9336 | /(?2)[^]a()b](abc)/ | |
| 9337 | Failed: reference to non-existent subpattern at offset 3 | |
| 9338 | ||
| 9339 | /(?1)[]a()b](abc)/ | |
| 9340 | abcbabc | |
| 9341 | 0: abcbabc | |
| 9342 | 1: abc | |
| 9343 | ** Failers | |
| 9344 | No match | |
| 9345 | abcXabc | |
| 9346 | No match | |
| 9347 | ||
| 9348 | /(?1)[^]a()b](abc)/ | |
| 9349 | abcXabc | |
| 9350 | 0: abcXabc | |
| 9351 | 1: abc | |
| 9352 | ** Failers | |
| 9353 | No match | |
| 9354 | abcbabc | |
| 9355 | No match | |
| 9356 | ||
| 9357 | /(?2)[]a()b](abc)(xyz)/ | |
| 9358 | xyzbabcxyz | |
| 9359 | 0: xyzbabcxyz | |
| 9360 | 1: abc | |
| 9361 | 2: xyz | |
| 9362 | ||
| 9363 | /(?&N)[]a(?<N>)](?<M>abc)/ | |
| 9364 | Failed: reference to non-existent subpattern at offset 4 | |
| 9365 | ||
| 9366 | /(?&N)[]a(?<N>)](abc)/ | |
| 9367 | Failed: reference to non-existent subpattern at offset 4 | |
| 9368 | ||
| 9369 | /a[]b/ | |
| 9370 | Failed: missing terminating ] for character class at offset 4 | |
| 9371 | ||
| 9372 | /a[^]b/ | |
| 9373 | Failed: missing terminating ] for character class at offset 5 | |
| 9374 | ||
| 9375 | /a[]b/<JS> | |
| 9376 | ** Failers | |
| 9377 | No match | |
| 9378 | ab | |
| 9379 | No match | |
| 9380 | ||
| 9381 | /a[]+b/<JS> | |
| 9382 | ** Failers | |
| 9383 | No match | |
| 9384 | ab | |
| 9385 | No match | |
| 9386 | ||
| 9387 | /a[]*+b/<JS> | |
| 9388 | ** Failers | |
| 9389 | No match | |
| 9390 | ab | |
| 9391 | No match | |
| 9392 | ||
| 9393 | /a[^]b/<JS> | |
| 9394 | aXb | |
| 9395 | 0: aXb | |
| 9396 | a\nb | |
| 9397 | 0: a\x0ab | |
| 9398 | ** Failers | |
| 9399 | No match | |
| 9400 | ab | |
| 9401 | No match | |
| 9402 | ||
| 9403 | /a[^]+b/<JS> | |
| 9404 | aXb | |
| 9405 | 0: aXb | |
| 9406 | a\nX\nXb | |
| 9407 | 0: a\x0aX\x0aXb | |
| 9408 | ** Failers | |
| 9409 | No match | |
| 9410 | ab | |
| 9411 | No match | |
| 9412 | ||
| 9413 | /a(?!)+b/ | |
| 9414 | Failed: nothing to repeat at offset 5 | |
| 9415 | ||
| 9416 | /a(*FAIL)+b/ | |
| 9417 | Failed: nothing to repeat at offset 8 | |
| 9418 | ||
| 9419 | /(abc|pqr|123){0}[xyz]/SI | |
| 9420 | Capturing subpattern count = 1 | |
| 9421 | No options | |
| 9422 | No first char | |
| 9423 | No need char | |
| 9424 | Subject length lower bound = 1 | |
| 9425 | Starting byte set: x y z | |
| 9426 | ||
| 9427 | /(?(?=.*b)b|^)/CI | |
| 9428 | Capturing subpattern count = 0 | |
| 9429 | Options: | |
| 9430 | No first char | |
| 9431 | No need char | |
| 9432 | adc | |
| 9433 | --->adc | |
| 9434 | +0 ^ (?(?=.*b)b|^) | |
| 9435 | +2 ^ (?=.*b) | |
| 9436 | +5 ^ .* | |
| 9437 | +7 ^ ^ b | |
| 9438 | +7 ^ ^ b | |
| 9439 | +7 ^^ b | |
| 9440 | +7 ^ b | |
| 9441 | +12 ^ ) | |
| 9442 | +13 ^ | |
| 9443 | 0: | |
| 9444 | abc | |
| 9445 | --->abc | |
| 9446 | +0 ^ (?(?=.*b)b|^) | |
| 9447 | +2 ^ (?=.*b) | |
| 9448 | +5 ^ .* | |
| 9449 | +7 ^ ^ b | |
| 9450 | +7 ^ ^ b | |
| 9451 | +7 ^^ b | |
| 9452 | +8 ^ ^ ) | |
| 9453 | +9 ^ b | |
| 9454 | +0 ^ (?(?=.*b)b|^) | |
| 9455 | +2 ^ (?=.*b) | |
| 9456 | +5 ^ .* | |
| 9457 | +7 ^ ^ b | |
| 9458 | +7 ^^ b | |
| 9459 | +7 ^ b | |
| 9460 | +8 ^^ ) | |
| 9461 | +9 ^ b | |
| 9462 | +10 ^^ | | |
| 9463 | +13 ^^ | |
| 9464 | 0: b | |
| 9465 | ||
| 9466 | /(?(?=b).*b|^d)/I | |
| 9467 | Capturing subpattern count = 0 | |
| 9468 | No options | |
| 9469 | No first char | |
| 9470 | No need char | |
| 9471 | ||
| 9472 | /(?(?=.*b).*b|^d)/I | |
| 9473 | Capturing subpattern count = 0 | |
| 9474 | No options | |
| 9475 | First char at start or follows newline | |
| 9476 | No need char | |
| 9477 | ||
| 9478 | /a?|b?/P | |
| 9479 | abc | |
| 9480 | 0: a | |
| 9481 | ** Failers | |
| 9482 | 0: | |
| 9483 | ddd\N | |
| 9484 | No match: POSIX code 17: match failed | |
| 9485 | ||
| 9486 | /xyz/C | |
| 9487 | xyz | |
| 9488 | --->xyz | |
| 9489 | +0 ^ x | |
| 9490 | +1 ^^ y | |
| 9491 | +2 ^ ^ z | |
| 9492 | +3 ^ ^ | |
| 9493 | 0: xyz | |
| 9494 | abcxyz | |
| 9495 | --->abcxyz | |
| 9496 | +0 ^ x | |
| 9497 | +1 ^^ y | |
| 9498 | +2 ^ ^ z | |
| 9499 | +3 ^ ^ | |
| 9500 | 0: xyz | |
| 9501 | abcxyz\Y | |
| 9502 | --->abcxyz | |
| 9503 | +0 ^ x | |
| 9504 | +0 ^ x | |
| 9505 | +0 ^ x | |
| 9506 | +0 ^ x | |
| 9507 | +1 ^^ y | |
| 9508 | +2 ^ ^ z | |
| 9509 | +3 ^ ^ | |
| 9510 | 0: xyz | |
| 9511 | ** Failers | |
| 9512 | No match | |
| 9513 | abc | |
| 9514 | No match | |
| 9515 | abc\Y | |
| 9516 | --->abc | |
| 9517 | +0 ^ x | |
| 9518 | +0 ^ x | |
| 9519 | +0 ^ x | |
| 9520 | +0 ^ x | |
| 9521 | No match | |
| 9522 | abcxypqr | |
| 9523 | No match | |
| 9524 | abcxypqr\Y | |
| 9525 | --->abcxypqr | |
| 9526 | +0 ^ x | |
| 9527 | +0 ^ x | |
| 9528 | +0 ^ x | |
| 9529 | +0 ^ x | |
| 9530 | +1 ^^ y | |
| 9531 | +2 ^ ^ z | |
| 9532 | +0 ^ x | |
| 9533 | +0 ^ x | |
| 9534 | +0 ^ x | |
| 9535 | +0 ^ x | |
| 9536 | +0 ^ x | |
| 9537 | No match | |
| 9538 | ||
| 9539 | /(*NO_START_OPT)xyz/C | |
| 9540 | abcxyz | |
| 9541 | --->abcxyz | |
| 9542 | +15 ^ x | |
| 9543 | +15 ^ x | |
| 9544 | +15 ^ x | |
| 9545 | +15 ^ x | |
| 9546 | +16 ^^ y | |
| 9547 | +17 ^ ^ z | |
| 9548 | +18 ^ ^ | |
| 9549 | 0: xyz | |
| 9550 | ||
| 9551 | /xyz/CY | |
| 9552 | abcxyz | |
| 9553 | --->abcxyz | |
| 9554 | +0 ^ x | |
| 9555 | +0 ^ x | |
| 9556 | +0 ^ x | |
| 9557 | +0 ^ x | |
| 9558 | +1 ^^ y | |
| 9559 | +2 ^ ^ z | |
| 9560 | +3 ^ ^ | |
| 9561 | 0: xyz | |
| 9562 | ||
| 9563 | /^"((?(?=[a])[^"])|b)*"$/C | |
| 9564 | "ab" | |
| 9565 | --->"ab" | |
| 9566 | +0 ^ ^ | |
| 9567 | +1 ^ " | |
| 9568 | +2 ^^ ((?(?=[a])[^"])|b)* | |
| 9569 | +3 ^^ (?(?=[a])[^"]) | |
| 9570 | +5 ^^ (?=[a]) | |
| 9571 | +8 ^^ [a] | |
| 9572 | +11 ^ ^ ) | |
| 9573 | +12 ^^ [^"] | |
| 9574 | +16 ^ ^ ) | |
| 9575 | +17 ^ ^ | | |
| 9576 | +3 ^ ^ (?(?=[a])[^"]) | |
| 9577 | +5 ^ ^ (?=[a]) | |
| 9578 | +8 ^ ^ [a] | |
| 9579 | +21 ^ ^ " | |
| 9580 | +18 ^ ^ b | |
| 9581 | +19 ^ ^ ) | |
| 9582 | +3 ^ ^ (?(?=[a])[^"]) | |
| 9583 | +5 ^ ^ (?=[a]) | |
| 9584 | +8 ^ ^ [a] | |
| 9585 | +21 ^ ^ " | |
| 9586 | +22 ^ ^ $ | |
| 9587 | +23 ^ ^ | |
| 9588 | 0: "ab" | |
| 9589 | 1: | |
| 9590 | ||
| 9591 | /^"((?(?=[a])[^"])|b)*"$/ | |
| 9592 | "ab" | |
| 9593 | 0: "ab" | |
| 9594 | 1: | |
| 9595 | ||
| 9596 | /^X(?5)(a)(?|(b)|(q))(c)(d)Y/ | |
| 9597 | Failed: reference to non-existent subpattern at offset 5 | |
| 9598 | ||
| 9599 | /^X(?&N)(a)(?|(b)|(q))(c)(d)(?<N>Y)/ | |
| 9600 | XYabcdY | |
| 9601 | 0: XYabcdY | |
| 9602 | 1: a | |
| 9603 | 2: b | |
| 9604 | 3: c | |
| 9605 | 4: d | |
| 9606 | 5: Y | |
| 9607 | ||
| 9608 | /Xa{2,4}b/ | |
| 9609 | X\P | |
| 9610 | Partial match: X | |
| 9611 | Xa\P | |
| 9612 | Partial match: Xa | |
| 9613 | Xaa\P | |
| 9614 | Partial match: Xaa | |
| 9615 | Xaaa\P | |
| 9616 | Partial match: Xaaa | |
| 9617 | Xaaaa\P | |
| 9618 | Partial match: Xaaaa | |
| 9619 | ||
| 9620 | /Xa{2,4}?b/ | |
| 9621 | X\P | |
| 9622 | Partial match: X | |
| 9623 | Xa\P | |
| 9624 | Partial match: Xa | |
| 9625 | Xaa\P | |
| 9626 | Partial match: Xaa | |
| 9627 | Xaaa\P | |
| 9628 | Partial match: Xaaa | |
| 9629 | Xaaaa\P | |
| 9630 | Partial match: Xaaaa | |
| 9631 | ||
| 9632 | /Xa{2,4}+b/ | |
| 9633 | X\P | |
| 9634 | Partial match: X | |
| 9635 | Xa\P | |
| 9636 | Partial match: Xa | |
| 9637 | Xaa\P | |
| 9638 | Partial match: Xaa | |
| 9639 | Xaaa\P | |
| 9640 | Partial match: Xaaa | |
| 9641 | Xaaaa\P | |
| 9642 | Partial match: Xaaaa | |
| 9643 | ||
| 9644 | /X\d{2,4}b/ | |
| 9645 | X\P | |
| 9646 | Partial match: X | |
| 9647 | X3\P | |
| 9648 | Partial match: X3 | |
| 9649 | X33\P | |
| 9650 | Partial match: X33 | |
| 9651 | X333\P | |
| 9652 | Partial match: X333 | |
| 9653 | X3333\P | |
| 9654 | Partial match: X3333 | |
| 9655 | ||
| 9656 | /X\d{2,4}?b/ | |
| 9657 | X\P | |
| 9658 | Partial match: X | |
| 9659 | X3\P | |
| 9660 | Partial match: X3 | |
| 9661 | X33\P | |
| 9662 | Partial match: X33 | |
| 9663 | X333\P | |
| 9664 | Partial match: X333 | |
| 9665 | X3333\P | |
| 9666 | Partial match: X3333 | |
| 9667 | ||
| 9668 | /X\d{2,4}+b/ | |
| 9669 | X\P | |
| 9670 | Partial match: X | |
| 9671 | X3\P | |
| 9672 | Partial match: X3 | |
| 9673 | X33\P | |
| 9674 | Partial match: X33 | |
| 9675 | X333\P | |
| 9676 | Partial match: X333 | |
| 9677 | X3333\P | |
| 9678 | Partial match: X3333 | |
| 9679 | ||
| 9680 | /X\D{2,4}b/ | |
| 9681 | X\P | |
| 9682 | Partial match: X | |
| 9683 | Xa\P | |
| 9684 | Partial match: Xa | |
| 9685 | Xaa\P | |
| 9686 | Partial match: Xaa | |
| 9687 | Xaaa\P | |
| 9688 | Partial match: Xaaa | |
| 9689 | Xaaaa\P | |
| 9690 | Partial match: Xaaaa | |
| 9691 | ||
| 9692 | /X\D{2,4}?b/ | |
| 9693 | X\P | |
| 9694 | Partial match: X | |
| 9695 | Xa\P | |
| 9696 | Partial match: Xa | |
| 9697 | Xaa\P | |
| 9698 | Partial match: Xaa | |
| 9699 | Xaaa\P | |
| 9700 | Partial match: Xaaa | |
| 9701 | Xaaaa\P | |
| 9702 | Partial match: Xaaaa | |
| 9703 | ||
| 9704 | /X\D{2,4}+b/ | |
| 9705 | X\P | |
| 9706 | Partial match: X | |
| 9707 | Xa\P | |
| 9708 | Partial match: Xa | |
| 9709 | Xaa\P | |
| 9710 | Partial match: Xaa | |
| 9711 | Xaaa\P | |
| 9712 | Partial match: Xaaa | |
| 9713 | Xaaaa\P | |
| 9714 | Partial match: Xaaaa | |
| 9715 | ||
| 9716 | /X[abc]{2,4}b/ | |
| 9717 | X\P | |
| 9718 | Partial match: X | |
| 9719 | Xa\P | |
| 9720 | Partial match: Xa | |
| 9721 | Xaa\P | |
| 9722 | Partial match: Xaa | |
| 9723 | Xaaa\P | |
| 9724 | Partial match: Xaaa | |
| 9725 | Xaaaa\P | |
| 9726 | Partial match: Xaaaa | |
| 9727 | ||
| 9728 | /X[abc]{2,4}?b/ | |
| 9729 | X\P | |
| 9730 | Partial match: X | |
| 9731 | Xa\P | |
| 9732 | Partial match: Xa | |
| 9733 | Xaa\P | |
| 9734 | Partial match: Xaa | |
| 9735 | Xaaa\P | |
| 9736 | Partial match: Xaaa | |
| 9737 | Xaaaa\P | |
| 9738 | Partial match: Xaaaa | |
| 9739 | ||
| 9740 | /X[abc]{2,4}+b/ | |
| 9741 | X\P | |
| 9742 | Partial match: X | |
| 9743 | Xa\P | |
| 9744 | Partial match: Xa | |
| 9745 | Xaa\P | |
| 9746 | Partial match: Xaa | |
| 9747 | Xaaa\P | |
| 9748 | Partial match: Xaaa | |
| 9749 | Xaaaa\P | |
| 9750 | Partial match: Xaaaa | |
| 9751 | ||
| 9752 | /X[^a]{2,4}b/ | |
| 9753 | X\P | |
| 9754 | Partial match: X | |
| 9755 | Xz\P | |
| 9756 | Partial match: Xz | |
| 9757 | Xzz\P | |
| 9758 | Partial match: Xzz | |
| 9759 | Xzzz\P | |
| 9760 | Partial match: Xzzz | |
| 9761 | Xzzzz\P | |
| 9762 | Partial match: Xzzzz | |
| 9763 | ||
| 9764 | /X[^a]{2,4}?b/ | |
| 9765 | X\P | |
| 9766 | Partial match: X | |
| 9767 | Xz\P | |
| 9768 | Partial match: Xz | |
| 9769 | Xzz\P | |
| 9770 | Partial match: Xzz | |
| 9771 | Xzzz\P | |
| 9772 | Partial match: Xzzz | |
| 9773 | Xzzzz\P | |
| 9774 | Partial match: Xzzzz | |
| 9775 | ||
| 9776 | /X[^a]{2,4}+b/ | |
| 9777 | X\P | |
| 9778 | Partial match: X | |
| 9779 | Xz\P | |
| 9780 | Partial match: Xz | |
| 9781 | Xzz\P | |
| 9782 | Partial match: Xzz | |
| 9783 | Xzzz\P | |
| 9784 | Partial match: Xzzz | |
| 9785 | Xzzzz\P | |
| 9786 | Partial match: Xzzzz | |
| 9787 | ||
| 9788 | /(Y)X\1{2,4}b/ | |
| 9789 | YX\P | |
| 9790 | Partial match: YX | |
| 9791 | YXY\P | |
| 9792 | Partial match: YXY | |
| 9793 | YXYY\P | |
| 9794 | Partial match: YXYY | |
| 9795 | YXYYY\P | |
| 9796 | Partial match: YXYYY | |
| 9797 | YXYYYY\P | |
| 9798 | Partial match: YXYYYY | |
| 9799 | ||
| 9800 | /(Y)X\1{2,4}?b/ | |
| 9801 | YX\P | |
| 9802 | Partial match: YX | |
| 9803 | YXY\P | |
| 9804 | Partial match: YXY | |
| 9805 | YXYY\P | |
| 9806 | Partial match: YXYY | |
| 9807 | YXYYY\P | |
| 9808 | Partial match: YXYYY | |
| 9809 | YXYYYY\P | |
| 9810 | Partial match: YXYYYY | |
| 9811 | ||
| 9812 | /(Y)X\1{2,4}+b/ | |
| 9813 | YX\P | |
| 9814 | Partial match: YX | |
| 9815 | YXY\P | |
| 9816 | Partial match: YXY | |
| 9817 | YXYY\P | |
| 9818 | Partial match: YXYY | |
| 9819 | YXYYY\P | |
| 9820 | Partial match: YXYYY | |
| 9821 | YXYYYY\P | |
| 9822 | Partial match: YXYYYY | |
| 9823 | ||
| 9824 | /\++\KZ|\d+X|9+Y/ | |
| 9825 | ++++123999\P | |
| 9826 | Partial match: 123999 | |
| 9827 | ++++123999Y\P | |
| 9828 | 0: 999Y | |
| 9829 | ++++Z1234\P | |
| 9830 | 0: Z | |
| 9831 | ||
| 9832 | /Z(*F)/ | |
| 9833 | Z\P | |
| 9834 | No match | |
| 9835 | ZA\P | |
| 9836 | No match | |
| 9837 | ||
| 9838 | /Z(?!)/ | |
| 9839 | Z\P | |
| 9840 | No match | |
| 9841 | ZA\P | |
| 9842 | No match | |
| 9843 | ||
| 9844 | /dog(sbody)?/ | |
| 9845 | dogs\P | |
| 9846 | 0: dog | |
| 9847 | dogs\P\P | |
| 9848 | Partial match: dogs | |
| 9849 | ||
| 9850 | /dog(sbody)??/ | |
| 9851 | dogs\P | |
| 9852 | 0: dog | |
| 9853 | dogs\P\P | |
| 9854 | 0: dog | |
| 9855 | ||
| 9856 | /dog|dogsbody/ | |
| 9857 | dogs\P | |
| 9858 | 0: dog | |
| 9859 | dogs\P\P | |
| 9860 | 0: dog | |
| 9861 | ||
| 9862 | /dogsbody|dog/ | |
| 9863 | dogs\P | |
| 9864 | 0: dog | |
| 9865 | dogs\P\P | |
| 9866 | Partial match: dogs | |
| 9867 | ||
| 9868 | /\bthe cat\b/ | |
| 9869 | the cat\P | |
| 9870 | 0: the cat | |
| 9871 | the cat\P\P | |
| 9872 | Partial match: the cat | |
| 9873 | ||
| 9874 | /abc/ | |
| 9875 | abc\P | |
| 9876 | 0: abc | |
| 9877 | abc\P\P | |
| 9878 | 0: abc | |
| 9879 | ||
| 9880 | /\w+A/P | |
| 9881 | CDAAAAB | |
| 9882 | 0: CDAAAA | |
| 9883 | ||
| 9884 | /\w+A/PU | |
| 9885 | CDAAAAB | |
| 9886 | 0: CDA | |
| 9887 | ||
| 9888 | /abc\K123/ | |
| 9889 | xyzabc123pqr | |
| 9890 | 0: 123 | |
| 9891 | xyzabc12\P | |
| 9892 | Partial match: abc12 | |
| 9893 | xyzabc12\P\P | |
| 9894 | Partial match: abc12 | |
| 9895 | ||
| 9896 | /(?<=abc)123/ | |
| 9897 | xyzabc123pqr | |
| 9898 | 0: 123 | |
| 9899 | xyzabc12\P | |
| 9900 | Partial match: abc12 | |
| 9901 | xyzabc12\P\P | |
| 9902 | Partial match: abc12 | |
| 9903 | ||
| 9904 | /\babc\b/ | |
| 9905 | +++abc+++ | |
| 9906 | 0: abc | |
| 9907 | +++ab\P | |
| 9908 | Partial match: +ab | |
| 9909 | +++ab\P\P | |
| 9910 | Partial match: +ab | |
| 9911 | ||
| 9912 | /(?&word)(?&element)(?(DEFINE)(?<element><[^m][^>]>[^<])(?<word>\w*+))/BZ | |
| 9913 | ------------------------------------------------------------------ | |
| 9914 | Bra | |
| 9915 | Recurse | |
| 9916 | Recurse | |
| 9917 | Cond | |
| 9918 | Cond def | |
| 9919 | CBra 1 | |
| 9920 | < | |
| 9921 | [^m] | |
| 9922 | [^>] | |
| 9923 | > | |
| 9924 | [^<] | |
| 9925 | Ket | |
| 9926 | CBra 2 | |
| 9927 | \w*+ | |
| 9928 | Ket | |
| 9929 | Ket | |
| 9930 | Ket | |
| 9931 | End | |
| 9932 | ------------------------------------------------------------------ | |
| 9933 | ||
| 9934 | /(?&word)(?&element)(?(DEFINE)(?<element><[^\d][^>]>[^<])(?<word>\w*+))/BZ | |
| 9935 | ------------------------------------------------------------------ | |
| 9936 | Bra | |
| 9937 | Recurse | |
| 9938 | Recurse | |
| 9939 | Cond | |
| 9940 | Cond def | |
| 9941 | CBra 1 | |
| 9942 | < | |
| 9943 | [\x00-/:-\xff] (neg) | |
| 9944 | [^>] | |
| 9945 | > | |
| 9946 | [^<] | |
| 9947 | Ket | |
| 9948 | CBra 2 | |
| 9949 | \w*+ | |
| 9950 | Ket | |
| 9951 | Ket | |
| 9952 | Ket | |
| 9953 | End | |
| 9954 | ------------------------------------------------------------------ | |
| 9955 | ||
| 9956 | /(ab)(x(y)z(cd(*ACCEPT)))pq/BZ | |
| 9957 | ------------------------------------------------------------------ | |
| 9958 | Bra | |
| 9959 | CBra 1 | |
| 9960 | ab | |
| 9961 | Ket | |
| 9962 | CBra 2 | |
| 9963 | x | |
| 9964 | CBra 3 | |
| 9965 | y | |
| 9966 | Ket | |
| 9967 | z | |
| 9968 | CBra 4 | |
| 9969 | cd | |
| 9970 | Close 4 | |
| 9971 | Close 2 | |
| 9972 | *ACCEPT | |
| 9973 | Ket | |
| 9974 | Ket | |
| 9975 | pq | |
| 9976 | Ket | |
| 9977 | End | |
| 9978 | ------------------------------------------------------------------ | |
| 9979 | ||
| 9980 | /abc\K/+ | |
| 9981 | abcdef | |
| 9982 | 0: | |
| 9983 | 0+ def | |
| 9984 | abcdef\N\N | |
| 9985 | 0: | |
| 9986 | 0+ def | |
| 9987 | xyzabcdef\N\N | |
| 9988 | 0: | |
| 9989 | 0+ def | |
| 9990 | ** Failers | |
| 9991 | No match | |
| 9992 | abcdef\N | |
| 9993 | No match | |
| 9994 | xyzabcdef\N | |
| 9995 | No match | |
| 9996 | ||
| 9997 | /^(?:(?=abc)|abc\K)/+ | |
| 9998 | abcdef | |
| 9999 | 0: | |
| 10000 | 0+ abcdef | |
| 10001 | abcdef\N\N | |
| 10002 | 0: | |
| 10003 | 0+ def | |
| 10004 | ** Failers | |
| 10005 | No match | |
| 10006 | abcdef\N | |
| 10007 | No match | |
| 10008 | ||
| 10009 | /a?b?/+ | |
| 10010 | xyz | |
| 10011 | 0: | |
| 10012 | 0+ xyz | |
| 10013 | xyzabc | |
| 10014 | 0: | |
| 10015 | 0+ xyzabc | |
| 10016 | xyzabc\N | |
| 10017 | 0: ab | |
| 10018 | 0+ c | |
| 10019 | xyzabc\N\N | |
| 10020 | 0: | |
| 10021 | 0+ yzabc | |
| 10022 | xyz\N\N | |
| 10023 | 0: | |
| 10024 | 0+ yz | |
| 10025 | ** Failers | |
| 10026 | 0: | |
| 10027 | 0+ ** Failers | |
| 10028 | xyz\N | |
| 10029 | No match | |
| 10030 | ||
| 10031 | /^a?b?/+ | |
| 10032 | xyz | |
| 10033 | 0: | |
| 10034 | 0+ xyz | |
| 10035 | xyzabc | |
| 10036 | 0: | |
| 10037 | 0+ xyzabc | |
| 10038 | ** Failers | |
| 10039 | 0: | |
| 10040 | 0+ ** Failers | |
| 10041 | xyzabc\N | |
| 10042 | No match | |
| 10043 | xyzabc\N\N | |
| 10044 | No match | |
| 10045 | xyz\N\N | |
| 10046 | No match | |
| 10047 | xyz\N | |
| 10048 | No match | |
| 10049 | ||
| 10050 | /^(?<name>a|b\g<name>c)/ | |
| 10051 | aaaa | |
| 10052 | 0: a | |
| 10053 | 1: a | |
| 10054 | bacxxx | |
| 10055 | 0: bac | |
| 10056 | 1: bac | |
| 10057 | bbaccxxx | |
| 10058 | 0: bbacc | |
| 10059 | 1: bbacc | |
| 10060 | bbbacccxx | |
| 10061 | 0: bbbaccc | |
| 10062 | 1: bbbaccc | |
| 10063 | ||
| 10064 | /^(?<name>a|b\g'name'c)/ | |
| 10065 | aaaa | |
| 10066 | 0: a | |
| 10067 | 1: a | |
| 10068 | bacxxx | |
| 10069 | 0: bac | |
| 10070 | 1: bac | |
| 10071 | bbaccxxx | |
| 10072 | 0: bbacc | |
| 10073 | 1: bbacc | |
| 10074 | bbbacccxx | |
| 10075 | 0: bbbaccc | |
| 10076 | 1: bbbaccc | |
| 10077 | ||
| 10078 | /^(a|b\g<1>c)/ | |
| 10079 | aaaa | |
| 10080 | 0: a | |
| 10081 | 1: a | |
| 10082 | bacxxx | |
| 10083 | 0: bac | |
| 10084 | 1: bac | |
| 10085 | bbaccxxx | |
| 10086 | 0: bbacc | |
| 10087 | 1: bbacc | |
| 10088 | bbbacccxx | |
| 10089 | 0: bbbaccc | |
| 10090 | 1: bbbaccc | |
| 10091 | ||
| 10092 | /^(a|b\g'1'c)/ | |
| 10093 | aaaa | |
| 10094 | 0: a | |
| 10095 | 1: a | |
| 10096 | bacxxx | |
| 10097 | 0: bac | |
| 10098 | 1: bac | |
| 10099 | bbaccxxx | |
| 10100 | 0: bbacc | |
| 10101 | 1: bbacc | |
| 10102 | bbbacccxx | |
| 10103 | 0: bbbaccc | |
| 10104 | 1: bbbaccc | |
| 10105 | ||
| 10106 | /^(a|b\g'-1'c)/ | |
| 10107 | aaaa | |
| 10108 | 0: a | |
| 10109 | 1: a | |
| 10110 | bacxxx | |
| 10111 | 0: bac | |
| 10112 | 1: bac | |
| 10113 | bbaccxxx | |
| 10114 | 0: bbacc | |
| 10115 | 1: bbacc | |
| 10116 | bbbacccxx | |
| 10117 | 0: bbbaccc | |
| 10118 | 1: bbbaccc | |
| 10119 | ||
| 10120 | /(^(a|b\g<-1>c))/ | |
| 10121 | aaaa | |
| 10122 | 0: a | |
| 10123 | 1: a | |
| 10124 | 2: a | |
| 10125 | bacxxx | |
| 10126 | 0: bac | |
| 10127 | 1: bac |