609 |
No need char |
No need char |
610 |
|
|
611 |
/[\p{Nd}]/8DM |
/[\p{Nd}]/8DM |
612 |
Memory allocation (code space): 47 |
Memory allocation (code space): 15 |
613 |
------------------------------------------------------------------ |
------------------------------------------------------------------ |
614 |
0 11 Bra 0 |
0 11 Bra 0 |
615 |
3 [\p{Nd}] |
3 [\p{Nd}] |
1410 |
1: L=abc |
1: L=abc |
1411 |
2: abc |
2: abc |
1412 |
|
|
1413 |
|
/The next two should be Perl-compatible, but it fails to match \x{e0}. PCRE |
1414 |
|
will match it only with UCP support, because without that it has no notion |
1415 |
|
of case for anything other than the ASCII letters. / |
1416 |
|
|
1417 |
|
/((?i)[\x{c0}])/8 |
1418 |
|
\x{c0} |
1419 |
|
0: \x{c0} |
1420 |
|
1: \x{c0} |
1421 |
|
\x{e0} |
1422 |
|
0: \x{e0} |
1423 |
|
1: \x{e0} |
1424 |
|
|
1425 |
|
/(?i:[\x{c0}])/8 |
1426 |
|
\x{c0} |
1427 |
|
0: \x{c0} |
1428 |
|
\x{e0} |
1429 |
|
0: \x{e0} |
1430 |
|
|
1431 |
|
/^\p{Balinese}\p{Cuneiform}\p{Nko}\p{Phags_Pa}\p{Phoenician}/8 |
1432 |
|
\x{1b00}\x{12000}\x{7c0}\x{a840}\x{10900} |
1433 |
|
0: \x{1b00}\x{12000}\x{7c0}\x{a840}\x{10900} |
1434 |
|
|
1435 |
/ End of testinput6 / |
/ End of testinput6 / |