Parent Directory
|
Revision Log
|
Patch
| revision 87 by nigel, Sat Feb 24 21:41:21 2007 UTC | revision 91 by nigel, Sat Feb 24 21:41:34 2007 UTC | |
|---|---|---|
| # | Line 1908 | Line 1908 |
| 1908 | /(abc)\323/ | /(abc)\323/ |
| 1909 | abc\xd3 | abc\xd3 |
| 1910 | ||
| 1911 | /(abc)\500/ | /(abc)\100/ |
| 1912 | abc\x40 | abc\x40 |
| 1913 | abc\100 | abc\100 |
| 1914 | ||
| 1915 | /(abc)\5000/ | /(abc)\1000/ |
| 1916 | abc\x400 | abc\x400 |
| 1917 | abc\x40\x30 | abc\x40\x30 |
| 1918 | abc\1000 | abc\1000 |
| # | Line 4018 | Line 4018 |
| 4018 | 123\P | 123\P |
| 4019 | 4\P\R | 4\P\R |
| 4020 | ||
| 4021 | /^/mg | |
| 4022 | a\nb\nc\n | |
| 4023 | \ | |
| 4024 | ||
| 4025 | /(?<=C\n)^/mg | |
| 4026 | A\nC\nC\n | |
| 4027 | ||
| 4028 | /(?s)A?B/ | |
| 4029 | AB | |
| 4030 | aB | |
| 4031 | ||
| 4032 | /(?s)A*B/ | |
| 4033 | AB | |
| 4034 | aB | |
| 4035 | ||
| 4036 | /(?m)A?B/ | |
| 4037 | AB | |
| 4038 | aB | |
| 4039 | ||
| 4040 | /(?m)A*B/ | |
| 4041 | AB | |
| 4042 | aB | |
| 4043 | ||
| 4044 | /Content-Type\x3A[^\r\n]{6,}/ | |
| 4045 | Content-Type:xxxxxyyy | |
| 4046 | ||
| 4047 | /Content-Type\x3A[^\r\n]{6,}z/ | |
| 4048 | Content-Type:xxxxxyyyz | |
| 4049 | ||
| 4050 | /Content-Type\x3A[^a]{6,}/ | |
| 4051 | Content-Type:xxxyyy | |
| 4052 | ||
| 4053 | /Content-Type\x3A[^a]{6,}z/ | |
| 4054 | Content-Type:xxxyyyz | |
| 4055 | ||
| 4056 | /^abc/m | |
| 4057 | xyz\nabc | |
| 4058 | xyz\nabc\<lf> | |
| 4059 | xyz\r\nabc\<lf> | |
| 4060 | xyz\rabc\<cr> | |
| 4061 | xyz\r\nabc\<crlf> | |
| 4062 | ** Failers | |
| 4063 | xyz\nabc\<cr> | |
| 4064 | xyz\r\nabc\<cr> | |
| 4065 | xyz\nabc\<crlf> | |
| 4066 | xyz\rabc\<crlf> | |
| 4067 | xyz\rabc\<lf> | |
| 4068 | ||
| 4069 | /abc$/m | |
| 4070 | xyzabc | |
| 4071 | xyzabc\n | |
| 4072 | xyzabc\npqr | |
| 4073 | xyzabc\r\<cr> | |
| 4074 | xyzabc\rpqr\<cr> | |
| 4075 | xyzabc\r\n\<crlf> | |
| 4076 | xyzabc\r\npqr\<crlf> | |
| 4077 | ** Failers | |
| 4078 | xyzabc\r | |
| 4079 | xyzabc\rpqr | |
| 4080 | xyzabc\r\n | |
| 4081 | xyzabc\r\npqr | |
| 4082 | ||
| 4083 | /^abc/m<cr> | |
| 4084 | xyz\rabcdef | |
| 4085 | xyz\nabcdef\<lf> | |
| 4086 | ** Failers | |
| 4087 | xyz\nabcdef | |
| 4088 | ||
| 4089 | /^abc/m<lf> | |
| 4090 | xyz\nabcdef | |
| 4091 | xyz\rabcdef\<cr> | |
| 4092 | ** Failers | |
| 4093 | xyz\rabcdef | |
| 4094 | ||
| 4095 | /^abc/m<crlf> | |
| 4096 | xyz\r\nabcdef | |
| 4097 | xyz\rabcdef\<cr> | |
| 4098 | ** Failers | |
| 4099 | xyz\rabcdef | |
| 4100 | ||
| 4101 | /.*/ | |
| 4102 | abc\ndef | |
| 4103 | abc\rdef | |
| 4104 | abc\r\ndef | |
| 4105 | \<cr>abc\ndef | |
| 4106 | \<cr>abc\rdef | |
| 4107 | \<cr>abc\r\ndef | |
| 4108 | \<crlf>abc\ndef | |
| 4109 | \<crlf>abc\rdef | |
| 4110 | \<crlf>abc\r\ndef | |
| 4111 | ||
| 4112 | /\w+(.)(.)?def/s | |
| 4113 | abc\ndef | |
| 4114 | abc\rdef | |
| 4115 | abc\r\ndef | |
| 4116 | ||
| 4117 | / End of testinput7 / | / End of testinput7 / |
|
||||||||
| webmaster@exim.org | ViewVC Help |
| Powered by ViewVC 1.1.12 |