| 747 |
/([\pL]=(abc))*X/ |
/([\pL]=(abc))*X/ |
| 748 |
L=abcX |
L=abcX |
| 749 |
|
|
| 750 |
|
/The next two should be Perl-compatible, but it fails to match \x{e0}. PCRE |
| 751 |
|
will match it only with UCP support, because without that it has no notion |
| 752 |
|
of case for anything other than the ASCII letters. / |
| 753 |
|
|
| 754 |
|
/((?i)[\x{c0}])/8 |
| 755 |
|
\x{c0} |
| 756 |
|
\x{e0} |
| 757 |
|
|
| 758 |
|
/(?i:[\x{c0}])/8 |
| 759 |
|
\x{c0} |
| 760 |
|
\x{e0} |
| 761 |
|
|
| 762 |
|
/^\p{Balinese}\p{Cuneiform}\p{Nko}\p{Phags_Pa}\p{Phoenician}/8 |
| 763 |
|
\x{1b00}\x{12000}\x{7c0}\x{a840}\x{10900} |
| 764 |
|
|
| 765 |
/ End of testinput6 / |
/ End of testinput6 / |