summaryrefslogtreecommitdiff
path: root/pod/perlretut.pod
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-03-31 11:21:28 -0600
committerKarl Williamson <public@khwilliamson.com>2011-03-31 11:33:22 -0600
commit1cd08ccc9c90129f04f8a038e2dd16f64ab27483 (patch)
tree7df747b1f9b20ab9b9b464fe2ae4c18f4861f607 /pod/perlretut.pod
parent5f67e4c90a75e5a3aa3eedb77c814cba10dfabf5 (diff)
downloadperl-1cd08ccc9c90129f04f8a038e2dd16f64ab27483.tar.gz
perlretut: Remove references to Unicode blocks
blocks are mostly useless, and not suitable for an introduction to regular expressions. It was not always the case, as in very early Unicode these were the best approximation to the much more useful Script concept. But that changed 10 or so years ago.
Diffstat (limited to 'pod/perlretut.pod')
-rw-r--r--pod/perlretut.pod5
1 files changed, 1 insertions, 4 deletions
diff --git a/pod/perlretut.pod b/pod/perlretut.pod
index 84d4d8a267..dd528c2126 100644
--- a/pod/perlretut.pod
+++ b/pod/perlretut.pod
@@ -1988,10 +1988,7 @@ Unicode has also been separated into various sets of characters
which you can test with C<\p{...}> (in) and C<\P{...}> (not in).
To test whether a character is (or is not) an element of a script
you would use the script name, for example C<\p{Latin}>, C<\p{Greek}>,
-or C<\P{Katakana}>. Other sets are the Unicode blocks, the names
-of which begin with "In". One such block is dedicated to mathematical
-operators, and its pattern formula is <C\p{InMathematicalOperators>}>.
-For the full list see L<perluniprops>.
+or C<\P{Katakana}>.
What we have described so far is the single form of the C<\p{...}> character
classes. There is also a compound form which you may run into. These