| 1 |
ph10 |
814 |
/-- This set of tests is for the 16-bit library's basic (non-UTF-16) features |
| 2 |
ph10 |
823 |
that are not compatible with the 8-bit library, or which give different |
| 3 |
|
|
output in 16-bit mode. --/ |
| 4 |
ph10 |
810 |
|
| 5 |
|
|
/a\Cb/ |
| 6 |
|
|
aXb |
| 7 |
|
|
0: aXb |
| 8 |
|
|
a\nb |
| 9 |
|
|
0: a\x0ab |
| 10 |
|
|
|
| 11 |
ph10 |
814 |
/-- Check maximum non-UTF character size --/ |
| 12 |
ph10 |
810 |
|
| 13 |
ph10 |
814 |
/\x{ffff}/ |
| 14 |
|
|
A\x{ffff}B |
| 15 |
|
|
** Character \x{ffff} is greater than 255. |
| 16 |
|
|
** Because its input is first processed as 8-bit, pcretest does not |
| 17 |
|
|
** support such characters in 16-bit mode when UTF-16 is not set. |
| 18 |
|
|
** Truncation will probably give the wrong result. |
| 19 |
ph10 |
810 |
No match |
| 20 |
|
|
|
| 21 |
ph10 |
814 |
/\x{10000}/ |
| 22 |
|
|
Failed: character value in \x{...} sequence is too large at offset 8 |
| 23 |
ph10 |
810 |
|
| 24 |
|
|
/[^\x{c4}]/DZ |
| 25 |
|
|
------------------------------------------------------------------ |
| 26 |
|
|
Bra |
| 27 |
|
|
[^\xc4] |
| 28 |
|
|
Ket |
| 29 |
|
|
End |
| 30 |
|
|
------------------------------------------------------------------ |
| 31 |
|
|
Capturing subpattern count = 0 |
| 32 |
|
|
No options |
| 33 |
|
|
No first char |
| 34 |
|
|
No need char |
| 35 |
|
|
|
| 36 |
ph10 |
818 |
|
| 37 |
|
|
/\x{100}/I |
| 38 |
|
|
Capturing subpattern count = 0 |
| 39 |
|
|
No options |
| 40 |
|
|
First char = \x{100} |
| 41 |
|
|
No need char |
| 42 |
|
|
|
| 43 |
|
|
/ (?: [\040\t] | \( |
| 44 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 45 |
|
|
\) )* # optional leading comment |
| 46 |
|
|
(?: (?: |
| 47 |
|
|
[^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters... |
| 48 |
|
|
(?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom |
| 49 |
|
|
| |
| 50 |
|
|
" (?: # opening quote... |
| 51 |
|
|
[^\\\x80-\xff\n\015"] # Anything except backslash and quote |
| 52 |
|
|
| # or |
| 53 |
|
|
\\ [^\x80-\xff] # Escaped something (something != CR) |
| 54 |
|
|
)* " # closing quote |
| 55 |
|
|
) # initial word |
| 56 |
|
|
(?: (?: [\040\t] | \( |
| 57 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 58 |
|
|
\) )* \. (?: [\040\t] | \( |
| 59 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 60 |
|
|
\) )* (?: |
| 61 |
|
|
[^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters... |
| 62 |
|
|
(?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom |
| 63 |
|
|
| |
| 64 |
|
|
" (?: # opening quote... |
| 65 |
|
|
[^\\\x80-\xff\n\015"] # Anything except backslash and quote |
| 66 |
|
|
| # or |
| 67 |
|
|
\\ [^\x80-\xff] # Escaped something (something != CR) |
| 68 |
|
|
)* " # closing quote |
| 69 |
|
|
) )* # further okay, if led by a period |
| 70 |
|
|
(?: [\040\t] | \( |
| 71 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 72 |
|
|
\) )* @ (?: [\040\t] | \( |
| 73 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 74 |
|
|
\) )* (?: |
| 75 |
|
|
[^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters... |
| 76 |
|
|
(?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom |
| 77 |
|
|
| \[ # [ |
| 78 |
|
|
(?: [^\\\x80-\xff\n\015\[\]] | \\ [^\x80-\xff] )* # stuff |
| 79 |
|
|
\] # ] |
| 80 |
|
|
) # initial subdomain |
| 81 |
|
|
(?: # |
| 82 |
|
|
(?: [\040\t] | \( |
| 83 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 84 |
|
|
\) )* \. # if led by a period... |
| 85 |
|
|
(?: [\040\t] | \( |
| 86 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 87 |
|
|
\) )* (?: |
| 88 |
|
|
[^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters... |
| 89 |
|
|
(?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom |
| 90 |
|
|
| \[ # [ |
| 91 |
|
|
(?: [^\\\x80-\xff\n\015\[\]] | \\ [^\x80-\xff] )* # stuff |
| 92 |
|
|
\] # ] |
| 93 |
|
|
) # ...further okay |
| 94 |
|
|
)* |
| 95 |
|
|
# address |
| 96 |
|
|
| # or |
| 97 |
|
|
(?: |
| 98 |
|
|
[^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters... |
| 99 |
|
|
(?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom |
| 100 |
|
|
| |
| 101 |
|
|
" (?: # opening quote... |
| 102 |
|
|
[^\\\x80-\xff\n\015"] # Anything except backslash and quote |
| 103 |
|
|
| # or |
| 104 |
|
|
\\ [^\x80-\xff] # Escaped something (something != CR) |
| 105 |
|
|
)* " # closing quote |
| 106 |
|
|
) # one word, optionally followed by.... |
| 107 |
|
|
(?: |
| 108 |
|
|
[^()<>@,;:".\\\[\]\x80-\xff\000-\010\012-\037] | # atom and space parts, or... |
| 109 |
|
|
\( |
| 110 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 111 |
|
|
\) | # comments, or... |
| 112 |
|
|
|
| 113 |
|
|
" (?: # opening quote... |
| 114 |
|
|
[^\\\x80-\xff\n\015"] # Anything except backslash and quote |
| 115 |
|
|
| # or |
| 116 |
|
|
\\ [^\x80-\xff] # Escaped something (something != CR) |
| 117 |
|
|
)* " # closing quote |
| 118 |
|
|
# quoted strings |
| 119 |
|
|
)* |
| 120 |
|
|
< (?: [\040\t] | \( |
| 121 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 122 |
|
|
\) )* # leading < |
| 123 |
|
|
(?: @ (?: [\040\t] | \( |
| 124 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 125 |
|
|
\) )* (?: |
| 126 |
|
|
[^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters... |
| 127 |
|
|
(?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom |
| 128 |
|
|
| \[ # [ |
| 129 |
|
|
(?: [^\\\x80-\xff\n\015\[\]] | \\ [^\x80-\xff] )* # stuff |
| 130 |
|
|
\] # ] |
| 131 |
|
|
) # initial subdomain |
| 132 |
|
|
(?: # |
| 133 |
|
|
(?: [\040\t] | \( |
| 134 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 135 |
|
|
\) )* \. # if led by a period... |
| 136 |
|
|
(?: [\040\t] | \( |
| 137 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 138 |
|
|
\) )* (?: |
| 139 |
|
|
[^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters... |
| 140 |
|
|
(?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom |
| 141 |
|
|
| \[ # [ |
| 142 |
|
|
(?: [^\\\x80-\xff\n\015\[\]] | \\ [^\x80-\xff] )* # stuff |
| 143 |
|
|
\] # ] |
| 144 |
|
|
) # ...further okay |
| 145 |
|
|
)* |
| 146 |
|
|
|
| 147 |
|
|
(?: (?: [\040\t] | \( |
| 148 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 149 |
|
|
\) )* , (?: [\040\t] | \( |
| 150 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 151 |
|
|
\) )* @ (?: [\040\t] | \( |
| 152 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 153 |
|
|
\) )* (?: |
| 154 |
|
|
[^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters... |
| 155 |
|
|
(?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom |
| 156 |
|
|
| \[ # [ |
| 157 |
|
|
(?: [^\\\x80-\xff\n\015\[\]] | \\ [^\x80-\xff] )* # stuff |
| 158 |
|
|
\] # ] |
| 159 |
|
|
) # initial subdomain |
| 160 |
|
|
(?: # |
| 161 |
|
|
(?: [\040\t] | \( |
| 162 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 163 |
|
|
\) )* \. # if led by a period... |
| 164 |
|
|
(?: [\040\t] | \( |
| 165 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 166 |
|
|
\) )* (?: |
| 167 |
|
|
[^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters... |
| 168 |
|
|
(?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom |
| 169 |
|
|
| \[ # [ |
| 170 |
|
|
(?: [^\\\x80-\xff\n\015\[\]] | \\ [^\x80-\xff] )* # stuff |
| 171 |
|
|
\] # ] |
| 172 |
|
|
) # ...further okay |
| 173 |
|
|
)* |
| 174 |
|
|
)* # further okay, if led by comma |
| 175 |
|
|
: # closing colon |
| 176 |
|
|
(?: [\040\t] | \( |
| 177 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 178 |
|
|
\) )* )? # optional route |
| 179 |
|
|
(?: |
| 180 |
|
|
[^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters... |
| 181 |
|
|
(?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom |
| 182 |
|
|
| |
| 183 |
|
|
" (?: # opening quote... |
| 184 |
|
|
[^\\\x80-\xff\n\015"] # Anything except backslash and quote |
| 185 |
|
|
| # or |
| 186 |
|
|
\\ [^\x80-\xff] # Escaped something (something != CR) |
| 187 |
|
|
)* " # closing quote |
| 188 |
|
|
) # initial word |
| 189 |
|
|
(?: (?: [\040\t] | \( |
| 190 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 191 |
|
|
\) )* \. (?: [\040\t] | \( |
| 192 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 193 |
|
|
\) )* (?: |
| 194 |
|
|
[^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters... |
| 195 |
|
|
(?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom |
| 196 |
|
|
| |
| 197 |
|
|
" (?: # opening quote... |
| 198 |
|
|
[^\\\x80-\xff\n\015"] # Anything except backslash and quote |
| 199 |
|
|
| # or |
| 200 |
|
|
\\ [^\x80-\xff] # Escaped something (something != CR) |
| 201 |
|
|
)* " # closing quote |
| 202 |
|
|
) )* # further okay, if led by a period |
| 203 |
|
|
(?: [\040\t] | \( |
| 204 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 205 |
|
|
\) )* @ (?: [\040\t] | \( |
| 206 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 207 |
|
|
\) )* (?: |
| 208 |
|
|
[^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters... |
| 209 |
|
|
(?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom |
| 210 |
|
|
| \[ # [ |
| 211 |
|
|
(?: [^\\\x80-\xff\n\015\[\]] | \\ [^\x80-\xff] )* # stuff |
| 212 |
|
|
\] # ] |
| 213 |
|
|
) # initial subdomain |
| 214 |
|
|
(?: # |
| 215 |
|
|
(?: [\040\t] | \( |
| 216 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 217 |
|
|
\) )* \. # if led by a period... |
| 218 |
|
|
(?: [\040\t] | \( |
| 219 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 220 |
|
|
\) )* (?: |
| 221 |
|
|
[^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters... |
| 222 |
|
|
(?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom |
| 223 |
|
|
| \[ # [ |
| 224 |
|
|
(?: [^\\\x80-\xff\n\015\[\]] | \\ [^\x80-\xff] )* # stuff |
| 225 |
|
|
\] # ] |
| 226 |
|
|
) # ...further okay |
| 227 |
|
|
)* |
| 228 |
|
|
# address spec |
| 229 |
|
|
(?: [\040\t] | \( |
| 230 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 231 |
|
|
\) )* > # trailing > |
| 232 |
|
|
# name and address |
| 233 |
|
|
) (?: [\040\t] | \( |
| 234 |
|
|
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )* |
| 235 |
|
|
\) )* # optional trailing comment |
| 236 |
|
|
/xSI |
| 237 |
|
|
Capturing subpattern count = 0 |
| 238 |
|
|
Contains explicit CR or LF match |
| 239 |
|
|
Options: extended |
| 240 |
|
|
No first char |
| 241 |
|
|
No need char |
| 242 |
|
|
Subject length lower bound = 3 |
| 243 |
|
|
Starting byte set: \x09 \x20 ! " # $ % & ' ( * + - / 0 1 2 3 4 5 6 7 8 |
| 244 |
|
|
9 = ? A B C D E F G H I J K L M N O P Q R S T U V W X Y Z ^ _ ` a b c d e |
| 245 |
|
|
f g h i j k l m n o p q r s t u v w x y z { | } ~ \x7f \xff |
| 246 |
|
|
|
| 247 |
zherczeg |
825 |
/\h/SI |
| 248 |
|
|
Capturing subpattern count = 0 |
| 249 |
|
|
No options |
| 250 |
|
|
No first char |
| 251 |
|
|
No need char |
| 252 |
|
|
Subject length lower bound = 1 |
| 253 |
|
|
Starting byte set: \x09 \x20 \xa0 \xff |
| 254 |
|
|
|
| 255 |
|
|
/\v/SI |
| 256 |
|
|
Capturing subpattern count = 0 |
| 257 |
|
|
No options |
| 258 |
|
|
No first char |
| 259 |
|
|
No need char |
| 260 |
|
|
Subject length lower bound = 1 |
| 261 |
|
|
Starting byte set: \x0a \x0b \x0c \x0d \x85 \xff |
| 262 |
|
|
|
| 263 |
|
|
/\R/SI |
| 264 |
|
|
Capturing subpattern count = 0 |
| 265 |
|
|
No options |
| 266 |
|
|
No first char |
| 267 |
|
|
No need char |
| 268 |
|
|
Subject length lower bound = 1 |
| 269 |
|
|
Starting byte set: \x0a \x0b \x0c \x0d \x85 \xff |
| 270 |
|
|
|
| 271 |
zherczeg |
826 |
/[\h]/BZ |
| 272 |
|
|
------------------------------------------------------------------ |
| 273 |
|
|
Bra |
| 274 |
|
|
[\x09 \xa0\x{1680}\x{180e}\x{2000}-\x{200a}\x{202f}\x{205f}\x{3000}] |
| 275 |
|
|
Ket |
| 276 |
|
|
End |
| 277 |
|
|
------------------------------------------------------------------ |
| 278 |
|
|
>\x09< |
| 279 |
|
|
0: \x09 |
| 280 |
|
|
|
| 281 |
|
|
/[\h]+/BZ |
| 282 |
|
|
------------------------------------------------------------------ |
| 283 |
|
|
Bra |
| 284 |
|
|
[\x09 \xa0\x{1680}\x{180e}\x{2000}-\x{200a}\x{202f}\x{205f}\x{3000}]+ |
| 285 |
|
|
Ket |
| 286 |
|
|
End |
| 287 |
|
|
------------------------------------------------------------------ |
| 288 |
|
|
>\x09\x20\xa0< |
| 289 |
|
|
0: \x09 \xa0 |
| 290 |
|
|
|
| 291 |
|
|
/[\v]/BZ |
| 292 |
|
|
------------------------------------------------------------------ |
| 293 |
|
|
Bra |
| 294 |
|
|
[\x0a-\x0d\x85\x{2028}-\x{2029}] |
| 295 |
|
|
Ket |
| 296 |
|
|
End |
| 297 |
|
|
------------------------------------------------------------------ |
| 298 |
|
|
|
| 299 |
|
|
/[\H]/BZ |
| 300 |
|
|
------------------------------------------------------------------ |
| 301 |
|
|
Bra |
| 302 |
|
|
[\x00-\x08\x0a-\x1f!-\x9f\xa1-\xff\x{100}-\x{167f}\x{1681}-\x{180d}\x{180f}-\x{1fff}\x{200b}-\x{202e}\x{2030}-\x{205e}\x{2060}-\x{2fff}\x{3001}-\x{ffff}] |
| 303 |
|
|
Ket |
| 304 |
|
|
End |
| 305 |
|
|
------------------------------------------------------------------ |
| 306 |
|
|
|
| 307 |
|
|
/[^\h]/BZ |
| 308 |
|
|
------------------------------------------------------------------ |
| 309 |
|
|
Bra |
| 310 |
|
|
[^\x09 \xa0\x{1680}\x{180e}\x{2000}-\x{200a}\x{202f}\x{205f}\x{3000}] |
| 311 |
|
|
Ket |
| 312 |
|
|
End |
| 313 |
|
|
------------------------------------------------------------------ |
| 314 |
|
|
|
| 315 |
|
|
/[\V]/BZ |
| 316 |
|
|
------------------------------------------------------------------ |
| 317 |
|
|
Bra |
| 318 |
|
|
[\x00-\x09\x0e-\x84\x86-\xff\x{100}-\x{2027}\x{202a}-\x{ffff}] |
| 319 |
|
|
Ket |
| 320 |
|
|
End |
| 321 |
|
|
------------------------------------------------------------------ |
| 322 |
|
|
|
| 323 |
|
|
/[\x0a\V]/BZ |
| 324 |
|
|
------------------------------------------------------------------ |
| 325 |
|
|
Bra |
| 326 |
|
|
[\x00-\x0a\x0e-\x84\x86-\xff\x{100}-\x{2027}\x{202a}-\x{ffff}] |
| 327 |
|
|
Ket |
| 328 |
|
|
End |
| 329 |
|
|
------------------------------------------------------------------ |
| 330 |
|
|
|
| 331 |
ph10 |
810 |
/-- End of testinput17 --/ |