297 |
<a href="pcreapi.html#localesupport">"Locale support"</a> |
<a href="pcreapi.html#localesupport">"Locale support"</a> |
298 |
in the |
in the |
299 |
<a href="pcreapi.html"><b>pcreapi</b></a> |
<a href="pcreapi.html"><b>pcreapi</b></a> |
300 |
page). For example, in the "fr_FR" (French) locale, some character codes |
page). For example, in a French locale such as "fr_FR" in Unix-like systems, |
301 |
greater than 128 are used for accented letters, and these are matched by \w. |
or "french" in Windows, some character codes greater than 128 are used for |
302 |
|
accented letters, and these are matched by \w. |
303 |
</P> |
</P> |
304 |
<P> |
<P> |
305 |
In UTF-8 mode, characters with values greater than 128 never match \d, \s, or |
In UTF-8 mode, characters with values greater than 128 never match \d, \s, or |
757 |
If a range that includes letters is used when caseless matching is set, it |
If a range that includes letters is used when caseless matching is set, it |
758 |
matches the letters in either case. For example, [W-c] is equivalent to |
matches the letters in either case. For example, [W-c] is equivalent to |
759 |
[][\\^_`wxyzabc], matched caselessly, and in non-UTF-8 mode, if character |
[][\\^_`wxyzabc], matched caselessly, and in non-UTF-8 mode, if character |
760 |
tables for the "fr_FR" locale are in use, [\xc8-\xcb] matches accented E |
tables for a French locale are in use, [\xc8-\xcb] matches accented E |
761 |
characters in both cases. In UTF-8 mode, PCRE supports the concept of case for |
characters in both cases. In UTF-8 mode, PCRE supports the concept of case for |
762 |
characters with values greater than 128 only when it is compiled with Unicode |
characters with values greater than 128 only when it is compiled with Unicode |
763 |
property support. |
property support. |