1 |
PCRE version 4.5 01-December-2003 |
PCRE version 6.2 01-Aug-2005 |
2 |
|
|
3 |
/-- Do not use the \x{} construct except with patterns that have the --/ |
/-- Do not use the \x{} construct except with patterns that have the --/ |
4 |
/-- /8 option set, because PCRE doesn't recognize them as UTF-8 unless --/ |
/-- /8 option set, because PCRE doesn't recognize them as UTF-8 unless --/ |
409 |
> >\x{100} Y |
> >\x{100} Y |
410 |
0: >\x{100} |
0: >\x{100} |
411 |
|
|
|
/\W/8 |
|
|
A.B |
|
|
0: . |
|
|
A\x{100}B |
|
|
0: \x{100} |
|
|
|
|
412 |
/\d/8 |
/\d/8 |
413 |
\x{100}3 |
\x{100}3 |
414 |
0: 3 |
0: 3 |
417 |
\x{100} X |
\x{100} X |
418 |
0: |
0: |
419 |
|
|
|
/\w/8 |
|
|
\x{100}X |
|
|
0: X |
|
|
|
|
420 |
/\D+/8 |
/\D+/8 |
421 |
12abcd34 |
12abcd34 |
422 |
0: abcd |
0: abcd |
821 |
0: \x{100} |
0: \x{100} |
822 |
*** Failers |
*** Failers |
823 |
No match |
No match |
824 |
\x{101} |
\x{102} |
825 |
No match |
No match |
826 |
y |
y |
827 |
No match |
No match |
896 |
0: |
0: |
897 |
1: |
1: |
898 |
|
|
899 |
|
/^\x{85}$/8i |
900 |
|
\x{85} |
901 |
|
0: \x{85} |
902 |
|
|
903 |
/ End of testinput4 / |
/ End of testinput4 / |