1 /-- This set of tests is for Unicode property support, relevant only to the 2 16- and 32-bit library. --/ 3 4 /A\x{391}\x{10427}\x{ff3a}\x{1fb0}/8iDZ 5 ------------------------------------------------------------------ 6 Bra 7 /i A\x{391}\x{10427}\x{ff3a}\x{1fb0} 8 Ket 9 End 10 ------------------------------------------------------------------ 11 Capturing subpattern count = 0 12 Options: caseless utf 13 First char = 'A' (caseless) 14 Need char = \x{1fb0} (caseless) 15 16 /A\x{391}\x{10427}\x{ff3a}\x{1fb0}/8DZ 17 ------------------------------------------------------------------ 18 Bra 19 A\x{391}\x{10427}\x{ff3a}\x{1fb0} 20 Ket 21 End 22 ------------------------------------------------------------------ 23 Capturing subpattern count = 0 24 Options: utf 25 First char = 'A' 26 Need char = \x{1fb0} 27 28 /AB\x{1fb0}/8DZ 29 ------------------------------------------------------------------ 30 Bra 31 AB\x{1fb0} 32 Ket 33 End 34 ------------------------------------------------------------------ 35 Capturing subpattern count = 0 36 Options: utf 37 First char = 'A' 38 Need char = \x{1fb0} 39 40 /AB\x{1fb0}/8DZi 41 ------------------------------------------------------------------ 42 Bra 43 /i AB\x{1fb0} 44 Ket 45 End 46 ------------------------------------------------------------------ 47 Capturing subpattern count = 0 48 Options: caseless utf 49 First char = 'A' (caseless) 50 Need char = \x{1fb0} (caseless) 51 52 /\x{401}\x{420}\x{421}\x{422}\x{423}\x{424}\x{425}\x{426}\x{427}\x{428}\x{429}\x{42a}\x{42b}\x{42c}\x{42d}\x{42e}\x{42f}/8iSI 53 Capturing subpattern count = 0 54 Options: caseless utf 55 First char = \x{401} (caseless) 56 Need char = \x{42f} (caseless) 57 Subject length lower bound = 17 58 No starting char list 59 \x{401}\x{420}\x{421}\x{422}\x{423}\x{424}\x{425}\x{426}\x{427}\x{428}\x{429}\x{42a}\x{42b}\x{42c}\x{42d}\x{42e}\x{42f} 60 0: \x{401}\x{420}\x{421}\x{422}\x{423}\x{424}\x{425}\x{426}\x{427}\x{428}\x{429}\x{42a}\x{42b}\x{42c}\x{42d}\x{42e}\x{42f} 61 \x{451}\x{440}\x{441}\x{442}\x{443}\x{444}\x{445}\x{446}\x{447}\x{448}\x{449}\x{44a}\x{44b}\x{44c}\x{44d}\x{44e}\x{44f} 62 0: \x{451}\x{440}\x{441}\x{442}\x{443}\x{444}\x{445}\x{446}\x{447}\x{448}\x{449}\x{44a}\x{44b}\x{44c}\x{44d}\x{44e}\x{44f} 63 64 /[]/8iBZ 65 ------------------------------------------------------------------ 66 Bra 67 /i \x{2c65} 68 Ket 69 End 70 ------------------------------------------------------------------ 71 72 /[^]/8iBZ 73 ------------------------------------------------------------------ 74 Bra 75 /i [^\x{2c65}] 76 Ket 77 End 78 ------------------------------------------------------------------ 79 80 /[[:blank:]]/WBZ 81 ------------------------------------------------------------------ 82 Bra 83 [\x09 \xa0\x{1680}\x{180e}\x{2000}-\x{200a}\x{202f}\x{205f}\x{3000}] 84 Ket 85 End 86 ------------------------------------------------------------------ 87 88 /\x{212a}+/i8SI 89 Capturing subpattern count = 0 90 Options: caseless utf 91 No first char 92 No need char 93 Subject length lower bound = 1 94 Starting chars: K k \xff 95 KKkk\x{212a} 96 0: KKkk\x{212a} 97 98 /s+/i8SI 99 Capturing subpattern count = 0 100 Options: caseless utf 101 No first char 102 No need char 103 Subject length lower bound = 1 104 Starting chars: S s \xff 105 SSss\x{17f} 106 0: SSss\x{17f} 107 108 /-- End of testinput19 --/ 109