version 1.1, 2012/02/21 23:05:52
|
version 1.1.1.2, 2012/02/21 23:50:25
|
Line 1
|
Line 1
|
/-- This set of tests is for UTF-8 support, excluding Unicode properties. It is | /-- This set of tests is for UTF support, excluding Unicode properties. It is |
compatible with all versions of Perl 5. --/ | compatible with all versions of Perl >= 5.10 and both the 8-bit and 16-bit |
| PCRE libraries. --/ |
|
|
/a.b/8 |
/a.b/8 |
acb |
acb |
Line 126
|
Line 127
|
*** Failers |
*** Failers |
XYZ |
XYZ |
|
|
/X(\C{3})/8 |
|
X\x{1234} |
|
|
|
/X(\C{4})/8 |
|
X\x{1234}YZ |
|
|
|
/X\C*/8 |
|
XYZabcdce |
|
|
|
/X\C*?/8 |
|
XYZabcde |
|
|
|
/X\C{3,5}/8 |
|
Xabcdefg |
|
X\x{1234} |
|
X\x{1234}YZ |
|
X\x{1234}\x{512} |
|
X\x{1234}\x{512}YZ |
|
|
|
/X\C{3,5}?/8 |
|
Xabcdefg |
|
X\x{1234} |
|
X\x{1234}YZ |
|
X\x{1234}\x{512} |
|
|
|
/[^a]+/8g |
/[^a]+/8g |
bcd |
bcd |
\x{100}aY\x{256}Z |
\x{100}aY\x{256}Z |
Line 456
|
Line 432
|
\x{150}X |
\x{150}X |
\x{200}X |
\x{200}X |
|
|
/a\Cb/ |
|
aXb |
|
a\nb |
|
|
|
/a\Cb/8 |
|
aXb |
|
a\nb |
|
|
|
/a\C\Cb/8 |
|
a\x{100}b |
|
|
|
/[z-\x{100}]/8i |
/[z-\x{100}]/8i |
z |
z |
Z |
Z |
Line 650
|
Line 615
|
/(abc)\1/8 |
/(abc)\1/8 |
abc |
abc |
|
|
/ab\Cde/8 | /a(*:a\x{1234}b)/8K |
abXde | abc |
| |
| /a(*:a£b)/8K |
| abc |
|
|
/-- End of testinput4 --/ |
/-- End of testinput4 --/ |