diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-02-27 18:27:23 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-02-27 18:30:59 -0700 |
commit | 2171640d622fec8c4600653b1cf9907d24dfc169 (patch) | |
tree | 455b0bc9f7efd236bd3308e19e2f5510b150a5c8 /pod/perlrecharclass.pod | |
parent | 2d8edfd19d3ae7a665ce2648c86d00540f61f564 (diff) | |
download | perl-2171640d622fec8c4600653b1cf9907d24dfc169.tar.gz |
\N is no longer experimental
Diffstat (limited to 'pod/perlrecharclass.pod')
-rw-r--r-- | pod/perlrecharclass.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlrecharclass.pod b/pod/perlrecharclass.pod index da05ab1af1..681cd06e2a 100644 --- a/pod/perlrecharclass.pod +++ b/pod/perlrecharclass.pod @@ -29,7 +29,7 @@ the most well-known character class. By default, a dot matches any character, except for the newline. That default can be changed to add matching the newline by using the I<single line> modifier: either for the entire regular expression with the C</s> modifier, or -locally with C<(?s)>. (The experimental C<\N> backslash sequence, described +locally with C<(?s)>. (The C<\N> backslash sequence, described below, matches any character except newline without regard to the I<single line> modifier.) @@ -74,7 +74,7 @@ character classes, see L<perlrebackslash>.) =head3 \N -C<\N> is new in 5.12, and is experimental. It, like the dot, matches any +C<\N>, available starting in v5.12, like the dot, matches any character that is not a newline. The difference is that C<\N> is not influenced by the I<single line> regular expression modifier (see L</The dot> above). Note that the form C<\N{...}> may mean something completely different. When the |