323 |
** Failers |
** Failers |
324 |
WXYZ |
WXYZ |
325 |
|
|
326 |
/[\p{L}]/D |
/[\p{L}]/DZ |
327 |
|
|
328 |
/[\p{^L}]/D |
/[\p{^L}]/DZ |
329 |
|
|
330 |
/[\P{L}]/D |
/[\P{L}]/DZ |
331 |
|
|
332 |
/[\P{^L}]/D |
/[\P{^L}]/DZ |
333 |
|
|
334 |
/[abc\p{L}\x{0660}]/8D |
/[abc\p{L}\x{0660}]/8DZ |
335 |
|
|
336 |
/[\p{Nd}]/8DM |
/[\p{Nd}]/8DZ |
337 |
1234 |
1234 |
338 |
|
|
339 |
/[\p{Nd}+-]+/8DM |
/[\p{Nd}+-]+/8DZ |
340 |
1234 |
1234 |
341 |
12-34 |
12-34 |
342 |
12+\x{661}-34 |
12+\x{661}-34 |
425 |
A\x{391}\x{10427}\x{ff5a}\x{1fb0} |
A\x{391}\x{10427}\x{ff5a}\x{1fb0} |
426 |
A\x{391}\x{10427}\x{ff3a}\x{1fb8} |
A\x{391}\x{10427}\x{ff3a}\x{1fb8} |
427 |
|
|
428 |
/A\x{391}\x{10427}\x{ff3a}\x{1fb0}/8iD |
/A\x{391}\x{10427}\x{ff3a}\x{1fb0}/8iDZ |
429 |
|
|
430 |
/A\x{391}\x{10427}\x{ff3a}\x{1fb0}/8D |
/A\x{391}\x{10427}\x{ff3a}\x{1fb0}/8DZ |
431 |
|
|
432 |
/AB\x{1fb0}/8D |
/AB\x{1fb0}/8DZ |
433 |
|
|
434 |
/AB\x{1fb0}/8Di |
/AB\x{1fb0}/8DZi |
435 |
|
|
436 |
/\x{391}+/8i |
/\x{391}+/8i |
437 |
\x{391}\x{3b1}\x{3b1}\x{3b1}\x{391} |
\x{391}\x{3b1}\x{3b1}\x{3b1}\x{391} |
452 |
\x{c0} |
\x{c0} |
453 |
\x{e0} |
\x{e0} |
454 |
|
|
455 |
/[\x{105}-\x{109}]/8iD |
/[\x{105}-\x{109}]/8iDZ |
456 |
\x{104} |
\x{104} |
457 |
\x{105} |
\x{105} |
458 |
\x{109} |
\x{109} |
460 |
\x{100} |
\x{100} |
461 |
\x{10a} |
\x{10a} |
462 |
|
|
463 |
/[z-\x{100}]/8iD |
/[z-\x{100}]/8iDZ |
464 |
Z |
Z |
465 |
z |
z |
466 |
\x{39c} |
\x{39c} |
475 |
Y |
Y |
476 |
y |
y |
477 |
|
|
478 |
/[z-\x{100}]/8Di |
/[z-\x{100}]/8DZi |
479 |
|
|
480 |
/^\X/8 |
/^\X/8 |
481 |
A |
A |
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 |
|
/The next two are special cases where the lengths of the different cases of the |
766 |
|
same character differ. The first went wrong with heap fram storage; the 2nd |
767 |
|
was broken in all cases./ |
768 |
|
|
769 |
|
/^\x{023a}+?(\x{0130}+)/8i |
770 |
|
\x{023a}\x{2c65}\x{0130} |
771 |
|
|
772 |
|
/^\x{023a}+([^X])/8i |
773 |
|
\x{023a}\x{2c65}X |
774 |
|
|
775 |
|
/Check property support in non-UTF-8 mode/ |
776 |
|
|
777 |
|
/\p{L}{4}/ |
778 |
|
123abcdefg |
779 |
|
123abc\xc4\xc5zz |
780 |
|
|
781 |
/ End of testinput6 / |
/ End of testinput6 / |