diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-21 22:24:52 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-21 22:24:52 +0000 |
commit | 11ef8fddd64f78304dc923b07dffddd7a4f28074 (patch) | |
tree | 9e4865a4b94fc5d2b8eedb15ab84bd31d2dba4b3 /pod/perlunicode.pod | |
parent | c37c92b7db9f3abf052d2fdfcf7c6e144d547bbd (diff) | |
download | perl-11ef8fddd64f78304dc923b07dffddd7a4f28074.tar.gz |
Make writing user-defined character properties nicer.
p4raw-id: //depot/perl@16054
Diffstat (limited to 'pod/perlunicode.pod')
-rw-r--r-- | pod/perlunicode.pod | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/pod/perlunicode.pod b/pod/perlunicode.pod index 033c9ac5a9..17e070cadb 100644 --- a/pod/perlunicode.pod +++ b/pod/perlunicode.pod @@ -631,22 +631,28 @@ newline-separated lines. Each line must be one of the following: =item * Two hexadecimal numbers separated by a tabulator denoting a range -of Unicode codepoints. +of Unicode codepoints to include. =item * -An existing character property prefixed by "+utf8::" to include -all the characters in that property. +Something to include, prefixed by "+": either an built-in character +property (prefixed by "utf8::"), for all the characters in that +property; or two hexadecimal codepoints for a range; or a single +hexadecimal codepoint. =item * -An existing character property prefixed by "-utf8::" to exclude -all the characters in that property. +Something to exclude, prefixed by "-": either an existing character +property (prefixed by "utf8::"), for all the characters in that +property; or two hexadecimal codepoints for a range; or a single +hexadecimal codepoint. =item * -An existing character property prefixed by "!utf8::" to include -all except the characters in that property. +Something to negate, prefixed "!": either an existing character +property (prefixed by "utf8::") for all the characters except the +characters in the property; or two hexadecimal codepoints for a range; +or a single hexadecimal codepoint. =back |