1 |
PCRE version 4.1 12-Mar-2003 |
PCRE version 4.2 14-Apr-2003 |
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 --/ |
836 |
y |
y |
837 |
No match |
No match |
838 |
|
|
839 |
|
/[\xFF]/ |
840 |
|
>\xff< |
841 |
|
0: \xff |
842 |
|
|
843 |
|
/[\xff]/8 |
844 |
|
>\x{ff}< |
845 |
|
0: \x{ff} |
846 |
|
|
847 |
|
/[^\xFF]/ |
848 |
|
XYZ |
849 |
|
0: X |
850 |
|
|
851 |
|
/[^\xff]/8 |
852 |
|
XYZ |
853 |
|
0: X |
854 |
|
\x{123} |
855 |
|
0: \x{123} |
856 |
|
|
857 |
/ End of testinput4 / |
/ End of testinput4 / |
858 |
|
|