1 |
PCRE version 4.2 14-Apr-2003 |
PCRE version 4.3 21-May-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 --/ |
854 |
\x{123} |
\x{123} |
855 |
0: \x{123} |
0: \x{123} |
856 |
|
|
857 |
|
/^[ac]*b/8 |
858 |
|
xb |
859 |
|
No match |
860 |
|
|
861 |
|
/^[ac\x{100}]*b/8 |
862 |
|
xb |
863 |
|
No match |
864 |
|
|
865 |
|
/^[^x]*b/8i |
866 |
|
xb |
867 |
|
No match |
868 |
|
|
869 |
|
/^[^x]*b/8 |
870 |
|
xb |
871 |
|
No match |
872 |
|
|
873 |
|
/^\d*b/8 |
874 |
|
xb |
875 |
|
No match |
876 |
|
|
877 |
/ End of testinput4 / |
/ End of testinput4 / |
878 |
|
|