| 960 |
/^[\p{Xwd}]+/8 |
/^[\p{Xwd}]+/8 |
| 961 |
ABCD1234\x{6ca}\x{a6c}\x{10a7}_ |
ABCD1234\x{6ca}\x{a6c}\x{10a7}_ |
| 962 |
|
|
| 963 |
|
/-- Unicode properties for \b abd \B --/ |
| 964 |
|
|
| 965 |
|
/\b...\B/8W |
| 966 |
|
abc_ |
| 967 |
|
\x{37e}abc\x{376} |
| 968 |
|
\x{37e}\x{376}\x{371}\x{393}\x{394} |
| 969 |
|
!\x{c0}++\x{c1}\x{c2} |
| 970 |
|
!\x{c0}+++++ |
| 971 |
|
|
| 972 |
|
/-- Without PCRE_UCP, non-ASCII always fail, even if < 256 --/ |
| 973 |
|
|
| 974 |
|
/\b...\B/8 |
| 975 |
|
abc_ |
| 976 |
|
** Failers |
| 977 |
|
\x{37e}abc\x{376} |
| 978 |
|
\x{37e}\x{376}\x{371}\x{393}\x{394} |
| 979 |
|
!\x{c0}++\x{c1}\x{c2} |
| 980 |
|
!\x{c0}+++++ |
| 981 |
|
|
| 982 |
|
/-- With PCRE_UCP, non-UTF8 chars that are < 256 still check properties --/ |
| 983 |
|
|
| 984 |
|
/\b...\B/W |
| 985 |
|
abc_ |
| 986 |
|
!\x{c0}++\x{c1}\x{c2} |
| 987 |
|
!\x{c0}+++++ |
| 988 |
|
|
| 989 |
/-- End of testinput9 --/ |
/-- End of testinput9 --/ |