diff options
author | Karl Williamson <khw@cpan.org> | 2019-03-13 13:18:28 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2019-03-13 15:42:49 -0600 |
commit | 67d5c462b11923ef2f2c3b6dc5834d982347e17b (patch) | |
tree | 2fb83521a69989d1ed714cf8e0eed9fef05c17a0 /pod/perlrecharclass.pod | |
parent | 447fcf49ce69125df8ec9c1b46a7e6f24df98683 (diff) | |
download | perl-67d5c462b11923ef2f2c3b6dc5834d982347e17b.tar.gz |
perlrecharclass: Minor wording improvements
Diffstat (limited to 'pod/perlrecharclass.pod')
-rw-r--r-- | pod/perlrecharclass.pod | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pod/perlrecharclass.pod b/pod/perlrecharclass.pod index 0f6a624e85..bda60cd49e 100644 --- a/pod/perlrecharclass.pod +++ b/pod/perlrecharclass.pod @@ -359,9 +359,10 @@ C</\pLl/> is valid, but means something different. It matches a two character string: a letter (Unicode property C<\pL>), followed by a lowercase C<l>. -If locale rules are not in effect, the use of -a Unicode property will force the regular expression into using Unicode -rules, if it isn't already. +What a Unicode property matches is never subject to locale rules, and +if locale rules are not otherwise in effect, the use of a Unicode +property will force the regular expression into using Unicode rules, if +it isn't already. Note that almost all properties are immune to case-insensitive matching. That is, adding a C</i> regular expression modifier does not change what |