Parent Directory
|
Revision Log
|
Patch
revision 67 by nigel, Sat Feb 24 21:40:13 2007 UTC | revision 73 by nigel, Sat Feb 24 21:40:30 2007 UTC | |
---|---|---|
# | Line 1 | Line 1 |
1 | PCRE version 4.2 14-Apr-2003 | PCRE version 4.5 01-December-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 --/ |
# | Line 854 No match | Line 854 No match |
854 | \x{123} | \x{123} |
855 | 0: \x{123} | 0: \x{123} |
856 | ||
857 | / End of testinput4 / | /^[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 | /(|a)/g8 | |
878 | catac | |
879 | 0: | |
880 | 1: | |
881 | 0: | |
882 | 1: | |
883 | 0: a | |
884 | 1: a | |
885 | 0: | |
886 | 1: | |
887 | 0: | |
888 | 1: | |
889 | 0: a | |
890 | 1: a | |
891 | 0: | |
892 | 1: | |
893 | 0: | |
894 | 1: | |
895 | a\x{256}a | |
896 | 0: | |
897 | 1: | |
898 | 0: a | |
899 | 1: a | |
900 | 0: | |
901 | 1: | |
902 | 0: | |
903 | 1: | |
904 | 0: a | |
905 | 1: a | |
906 | 0: | |
907 | 1: | |
908 | ||
909 | / End of testinput4 / |
|
ViewVC Help | |
Powered by ViewVC 1.1.5 |