summaryrefslogtreecommitdiff
path: root/pod/perlrebackslash.pod
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-02-19 19:42:33 -0700
committerKarl Williamson <khw@cpan.org>2015-02-19 23:05:53 -0700
commit06ae27223f8f0af5633beb82c8be873ecadaaae3 (patch)
treef672431de09958d3a1cef7db44b18dc6cb820834 /pod/perlrebackslash.pod
parentd3e558c4cd58bf26578bbee7f0852f8472539397 (diff)
downloadperl-06ae27223f8f0af5633beb82c8be873ecadaaae3.tar.gz
Add \b{sb}
Diffstat (limited to 'pod/perlrebackslash.pod')
-rw-r--r--pod/perlrebackslash.pod7
1 files changed, 7 insertions, 0 deletions
diff --git a/pod/perlrebackslash.pod b/pod/perlrebackslash.pod
index 5e2d9ebea8..876d8741e7 100644
--- a/pod/perlrebackslash.pod
+++ b/pod/perlrebackslash.pod
@@ -572,6 +572,13 @@ explained below under L</C<\X>>. In fact, C<\X> is another way to get
the same functionality. It is equivalent to C</.+?\b{gcb}/>. Use
whichever is most convenient for your situation.
+=item C<\b{sb}>
+
+This matches a Unicode "Sentence Boundary". This is an aid to parsing
+natural language sentences. It gives good, but imperfect results. For
+example, it thinks that "Mr. Smith" is two sentences. More details are
+at L<http://www.unicode.org/reports/tr29/>.
+
=item C<\b{wb}>
This matches a Unicode "Word Boundary". This gives better (though not