5 no warnings 'surrogate'; # surrogates can be inputs to this
7 use Unicode::Normalize qw(getCombinClass NFD);
11 use Storable qw(dclone);
15 our @ISA = qw(Exporter);
17 our @EXPORT_OK = qw(charinfo
19 charblocks charscripts
21 general_categories bidi_types
37 Unicode::UCD - Unicode character database
41 use Unicode::UCD 'charinfo';
42 my $charinfo = charinfo($codepoint);
44 use Unicode::UCD 'casefold';
45 my $casefold = casefold(0xFB00);
47 use Unicode::UCD 'casespec';
48 my $casespec = casespec(0xFB00);
50 use Unicode::UCD 'charblock';
51 my $charblock = charblock($codepoint);
53 use Unicode::UCD 'charscript';
54 my $charscript = charscript($codepoint);
56 use Unicode::UCD 'charblocks';
57 my $charblocks = charblocks();
59 use Unicode::UCD 'charscripts';
60 my $charscripts = charscripts();
62 use Unicode::UCD qw(charscript charinrange);
63 my $range = charscript($script);
64 print "looks like $script\n" if charinrange($range, $codepoint);
66 use Unicode::UCD qw(general_categories bidi_types);
67 my $categories = general_categories();
68 my $types = bidi_types();
70 use Unicode::UCD 'prop_aliases';
71 my @space_names = prop_aliases("space");
73 use Unicode::UCD 'prop_value_aliases';
74 my @gc_punct_names = prop_value_aliases("Gc", "Punct");
76 use Unicode::UCD 'prop_invlist';
77 my @puncts = prop_invlist("gc=punctuation");
79 use Unicode::UCD 'prop_invmap';
80 my ($list_ref, $map_ref, $format, $missing)
81 = prop_invmap("General Category");
83 use Unicode::UCD 'compexcl';
84 my $compexcl = compexcl($codepoint);
86 use Unicode::UCD 'namedseq';
87 my $namedseq = namedseq($named_sequence_name);
89 my $unicode_version = Unicode::UCD::UnicodeVersion();
91 my $convert_to_numeric =
92 Unicode::UCD::num("\N{RUMI DIGIT ONE}\N{RUMI DIGIT TWO}");
96 The Unicode::UCD module offers a series of functions that
97 provide a simple interface to the Unicode
100 =head2 code point argument
102 Some of the functions are called with a I<code point argument>, which is either
103 a decimal or a hexadecimal scalar designating a Unicode code point, or C<U+>
104 followed by hexadecimals designating a Unicode code point. In other words, if
105 you want a code point to be interpreted as a hexadecimal number, you must
106 prefix it with either C<0x> or C<U+>, because a string like e.g. C<123> will be
107 interpreted as a decimal code point. Note that the largest code point in
119 my ($rfh, @path) = @_;
121 unless (defined $$rfh) {
124 $f = File::Spec->catfile($d, "unicore", @path);
125 last if open($$rfh, $f);
128 croak __PACKAGE__, ": failed to find ",
129 File::Spec->catfile(@path), " in @INC"
137 use Unicode::UCD 'charinfo';
139 my $charinfo = charinfo(0x41);
141 This returns information about the input L</code point argument>
142 as a reference to a hash of fields as defined by the Unicode
143 standard. If the L</code point argument> is not assigned in the standard
144 (i.e., has the general category C<Cn> meaning C<Unassigned>)
145 or is a non-character (meaning it is guaranteed to never be assigned in
147 C<undef> is returned.
149 Fields that aren't applicable to the particular code point argument exist in the
150 returned hash, and are empty.
152 The keys in the hash with the meanings of their values are:
158 the input L</code point argument> expressed in hexadecimal, with leading zeros
159 added if necessary to make it contain at least four hexdigits
163 name of I<code>, all IN UPPER CASE.
164 Some control-type code points do not have names.
165 This field will be empty for C<Surrogate> and C<Private Use> code points,
166 and for the others without a name,
167 it will contain a description enclosed in angle brackets, like
168 C<E<lt>controlE<gt>>.
173 The short name of the general category of I<code>.
174 This will match one of the keys in the hash returned by L</general_categories()>.
176 The L</prop_value_aliases()> function can be used to get all the synonyms
177 of the category name.
181 the combining class number for I<code> used in the Canonical Ordering Algorithm.
182 For Unicode 5.1, this is described in Section 3.11 C<Canonical Ordering Behavior>
184 L<http://www.unicode.org/versions/Unicode5.1.0/>
186 The L</prop_value_aliases()> function can be used to get all the synonyms
187 of the combining class number.
191 bidirectional type of I<code>.
192 This will match one of the keys in the hash returned by L</bidi_types()>.
194 The L</prop_value_aliases()> function can be used to get all the synonyms
195 of the bidi type name.
197 =item B<decomposition>
199 is empty if I<code> has no decomposition; or is one or more codes
200 (separated by spaces) that, taken in order, represent a decomposition for
201 I<code>. Each has at least four hexdigits.
202 The codes may be preceded by a word enclosed in angle brackets then a space,
203 like C<E<lt>compatE<gt> >, giving the type of decomposition
205 This decomposition may be an intermediate one whose components are also
206 decomposable. Use L<Unicode::Normalize> to get the final decomposition.
210 if I<code> is a decimal digit this is its integer numeric value
214 if I<code> represents some other digit-like number, this is its integer
219 if I<code> represents a whole or rational number, this is its numeric value.
220 Rational values are expressed as a string like C<1/4>.
224 C<Y> or C<N> designating if I<code> is mirrored in bidirectional text
228 name of I<code> in the Unicode 1.0 standard if one
229 existed for this code point and is different from the current name
233 As of Unicode 6.0, this is always empty.
237 is empty if there is no single code point uppercase mapping for I<code>
238 (its uppercase mapping is itself);
239 otherwise it is that mapping expressed as at least four hexdigits.
240 (L</casespec()> should be used in addition to B<charinfo()>
241 for case mappings when the calling program can cope with multiple code point
246 is empty if there is no single code point lowercase mapping for I<code>
247 (its lowercase mapping is itself);
248 otherwise it is that mapping expressed as at least four hexdigits.
249 (L</casespec()> should be used in addition to B<charinfo()>
250 for case mappings when the calling program can cope with multiple code point
255 is empty if there is no single code point titlecase mapping for I<code>
256 (its titlecase mapping is itself);
257 otherwise it is that mapping expressed as at least four hexdigits.
258 (L</casespec()> should be used in addition to B<charinfo()>
259 for case mappings when the calling program can cope with multiple code point
264 the block I<code> belongs to (used in C<\p{Blk=...}>).
265 See L</Blocks versus Scripts>.
270 the script I<code> belongs to.
271 See L</Blocks versus Scripts>.
275 Note that you cannot do (de)composition and casing based solely on the
276 I<decomposition>, I<combining>, I<lower>, I<upper>, and I<title> fields;
277 you will need also the L</compexcl()>, and L</casespec()> functions.
281 # NB: This function is nearly duplicated in charnames.pm
285 if ($arg =~ /^[1-9]\d*$/) {
287 } elsif ($arg =~ /^(?:[Uu]\+|0[xX])?([[:xdigit:]]+)$/) {
294 # Populated by _num. Converts real number back to input rational
295 my %real_to_rational;
297 # To store the contents of files found on disk.
309 # This function has traditionally mimicked what is in UnicodeData.txt,
310 # warts and all. This is a re-write that avoids UnicodeData.txt so that
311 # it can be removed to save disk space. Instead, this assembles
312 # information gotten by other methods that get data from various other
313 # files. It uses charnames to get the character name; and various
316 use feature 'unicode_strings';
319 my $code = _getcode($arg);
320 croak __PACKAGE__, "::charinfo: unknown code '$arg'" unless defined $code;
322 # Non-unicode implies undef.
323 return if $code > 0x10FFFF;
326 my $char = chr($code);
328 @CATEGORIES =_read_table("unicore/To/Gc.pl") unless @CATEGORIES;
329 $prop{'category'} = _search(\@CATEGORIES, 0, $#CATEGORIES, $code)
330 // $utf8::SwashInfo{'ToGc'}{'missing'};
332 return if $prop{'category'} eq 'Cn'; # Unassigned code points are undef
334 $prop{'code'} = sprintf "%04X", $code;
335 $prop{'name'} = ($char =~ /\p{Cntrl}/) ? '<control>'
336 : (charnames::viacode($code) // "");
338 $prop{'combining'} = getCombinClass($code);
340 @BIDIS =_read_table("unicore/To/Bc.pl") unless @BIDIS;
341 $prop{'bidi'} = _search(\@BIDIS, 0, $#BIDIS, $code)
342 // $utf8::SwashInfo{'ToBc'}{'missing'};
344 # For most code points, we can just read in "unicore/Decomposition.pl", as
345 # its contents are exactly what should be output. But that file doesn't
346 # contain the data for the Hangul syllable decompositions, which can be
347 # algorithmically computed, and NFD() does that, so we call NFD() for
348 # those. We can't use NFD() for everything, as it does a complete
349 # recursive decomposition, and what this function has always done is to
350 # return what's in UnicodeData.txt which doesn't show that recursiveness.
351 # Fortunately, the NFD() of the Hanguls doesn't have any recursion
353 # Having no decomposition implies an empty field; otherwise, all but
354 # "Canonical" imply a compatible decomposition, and the type is prefixed
355 # to that, as it is in UnicodeData.txt
356 if ($char =~ /\p{Block=Hangul_Syllables}/) {
357 # The code points of the decomposition are output in standard Unicode
358 # hex format, separated by blanks.
359 $prop{'decomposition'} = join " ", map { sprintf("%04X", $_)}
360 unpack "U*", NFD($char);
363 @DECOMPOSITIONS = _read_table("unicore/Decomposition.pl")
364 unless @DECOMPOSITIONS;
365 $prop{'decomposition'} = _search(\@DECOMPOSITIONS, 0, $#DECOMPOSITIONS,
369 # Can use num() to get the numeric values, if any.
370 if (! defined (my $value = num($char))) {
371 $prop{'decimal'} = $prop{'digit'} = $prop{'numeric'} = "";
375 $prop{'decimal'} = $prop{'digit'} = $prop{'numeric'} = $value;
379 # For non-decimal-digits, we have to read in the Numeric type
380 # to distinguish them. It is not just a matter of integer vs.
381 # rational, as some whole number values are not considered digits,
382 # e.g., TAMIL NUMBER TEN.
383 $prop{'decimal'} = "";
385 @NUMERIC_TYPES =_read_table("unicore/To/Nt.pl")
386 unless @NUMERIC_TYPES;
387 if ((_search(\@NUMERIC_TYPES, 0, $#NUMERIC_TYPES, $code) // "")
390 $prop{'digit'} = $prop{'numeric'} = $value;
394 $prop{'numeric'} = $real_to_rational{$value} // $value;
399 $prop{'mirrored'} = ($char =~ /\p{Bidi_Mirrored}/) ? 'Y' : 'N';
401 %UNICODE_1_NAMES =_read_table("unicore/To/Na1.pl", "use_hash") unless %UNICODE_1_NAMES;
402 $prop{'unicode10'} = $UNICODE_1_NAMES{$code} // "";
404 # This is true starting in 6.0, but, num() also requires 6.0, so
405 # don't need to test for version again here.
406 $prop{'comment'} = "";
408 %SIMPLE_UPPER = _read_table("unicore/To/Uc.pl", "use_hash")
409 unless %SIMPLE_UPPER;
410 $prop{'upper'} = (defined $SIMPLE_UPPER{$code})
411 ? sprintf("%04X", $SIMPLE_UPPER{$code} + $code)
414 %SIMPLE_LOWER = _read_table("unicore/To/Lc.pl", "use_hash")
415 unless %SIMPLE_LOWER;
416 $prop{'lower'} = (defined $SIMPLE_LOWER{$code})
417 ? sprintf("%04X", $SIMPLE_LOWER{$code} + $code)
420 %SIMPLE_TITLE = _read_table("unicore/To/Tc.pl", "use_hash")
421 unless %SIMPLE_TITLE;
422 $prop{'title'} = (defined $SIMPLE_TITLE{$code})
423 ? sprintf("%04X", $SIMPLE_TITLE{$code} + $code)
426 $prop{block} = charblock($code);
427 $prop{script} = charscript($code);
431 sub _search { # Binary search in a [[lo,hi,prop],[...],...] table.
432 my ($table, $lo, $hi, $code) = @_;
436 my $mid = int(($lo+$hi) / 2);
438 if ($table->[$mid]->[0] < $code) {
439 if ($table->[$mid]->[1] >= $code) {
440 return $table->[$mid]->[2];
442 _search($table, $mid + 1, $hi, $code);
444 } elsif ($table->[$mid]->[0] > $code) {
445 _search($table, $lo, $mid - 1, $code);
447 return $table->[$mid]->[2];
451 sub _read_table ($;$) {
453 # Returns the contents of the mktables generated table file located at $1
454 # in the form of either an array of arrays or a hash, depending on if the
455 # optional second parameter is true (for hash return) or not. In the case
456 # of a hash return, each key is a code point, and its corresponding value
457 # is what the table gives as the code point's corresponding value. In the
458 # case of an array return, each outer array denotes a range with [0] the
459 # start point of that range; [1] the end point; and [2] the value that
460 # every code point in the range has. The hash return is useful for fast
461 # lookup when the table contains only single code point ranges. The array
462 # return takes much less memory when there are large ranges.
464 # This function has the side effect of setting
465 # $utf8::SwashInfo{$property}{'format'} to be the mktables format of the
467 # $utf8::SwashInfo{$property}{'missing'} to be the value for all entries
468 # not listed in the table.
469 # where $property is the Unicode property name, preceded by 'To' for map
470 # properties., e.g., 'ToSc'.
472 # Table entries look like one of:
473 # 0000 0040 Common # [65]
477 my $return_hash = shift;
478 $return_hash = 0 unless defined $return_hash;
483 for (split /^/m, do $table) {
484 my ($start, $end, $value) = / ^ (.+?) \t (.*?) \t (.+?)
485 \s* ( \# .* )? # Optional comment
487 my $decimal_start = hex $start;
488 my $decimal_end = ($end eq "") ? $decimal_start : hex $end;
490 foreach my $i ($decimal_start .. $decimal_end) {
491 $return{$i} = $value;
495 $return[-1][1] == $decimal_start - 1
496 && $return[-1][2] eq $value)
498 # If this is merely extending the previous range, do just that.
499 $return[-1]->[1] = $decimal_end;
502 push @return, [ $decimal_start, $decimal_end, $value ];
505 return ($return_hash) ? %return : @return;
509 my ($range, $arg) = @_;
510 my $code = _getcode($arg);
511 croak __PACKAGE__, "::charinrange: unknown code '$arg'"
512 unless defined $code;
513 _search($range, 0, $#$range, $code);
516 =head2 B<charblock()>
518 use Unicode::UCD 'charblock';
520 my $charblock = charblock(0x41);
521 my $charblock = charblock(1234);
522 my $charblock = charblock(0x263a);
523 my $charblock = charblock("U+263a");
525 my $range = charblock('Armenian');
527 With a L</code point argument> charblock() returns the I<block> the code point
528 belongs to, e.g. C<Basic Latin>. The old-style block name is returned (see
529 L</Old-style versus new-style block names>).
530 If the code point is unassigned, this returns the block it would belong to if
533 See also L</Blocks versus Scripts>.
535 If supplied with an argument that can't be a code point, charblock() tries to
536 do the opposite and interpret the argument as an old-style block name. The
538 is a I<range set> with one range: an anonymous list with a single element that
539 consists of another anonymous list whose first element is the first code point
540 in the block, and whose second (and final) element is the final code point in
541 the block. (The extra list consisting of just one element is so that the same
542 program logic can be used to handle both this return, and the return from
543 L</charscript()> which can have multiple ranges.) You can test whether a code
544 point is in a range using the L</charinrange()> function. If the argument is
545 not a known block, C<undef> is returned.
554 # Can't read from the mktables table because it loses the hyphens in the
557 if (openunicode(\$BLOCKSFH, "Blocks.txt")) {
560 while (<$BLOCKSFH>) {
561 if (/^([0-9A-F]+)\.\.([0-9A-F]+);\s+(.+)/) {
562 my ($lo, $hi) = (hex($1), hex($2));
563 my $subrange = [ $lo, $hi, $3 ];
564 push @BLOCKS, $subrange;
565 push @{$BLOCKS{$3}}, $subrange;
576 _charblocks() unless @BLOCKS;
578 my $code = _getcode($arg);
581 my $result = _search(\@BLOCKS, 0, $#BLOCKS, $code);
582 return $result if defined $result;
585 elsif (exists $BLOCKS{$arg}) {
586 return dclone $BLOCKS{$arg};
590 =head2 B<charscript()>
592 use Unicode::UCD 'charscript';
594 my $charscript = charscript(0x41);
595 my $charscript = charscript(1234);
596 my $charscript = charscript("U+263a");
598 my $range = charscript('Thai');
600 With a L</code point argument> charscript() returns the I<script> the
601 code point belongs to, e.g. C<Latin>, C<Greek>, C<Han>.
602 If the code point is unassigned, it returns C<"Unknown">.
604 If supplied with an argument that can't be a code point, charscript() tries
605 to do the opposite and interpret the argument as a script name. The
606 return value is a I<range set>: an anonymous list of lists that contain
607 I<start-of-range>, I<end-of-range> code point pairs. You can test whether a
608 code point is in a range set using the L</charinrange()> function. If the
609 argument is not a known script, C<undef> is returned.
611 See also L</Blocks versus Scripts>.
619 @SCRIPTS =_read_table("unicore/To/Sc.pl") unless @SCRIPTS;
620 foreach my $entry (@SCRIPTS) {
621 $entry->[2] =~ s/(_\w)/\L$1/g; # Preserve old-style casing
622 push @{$SCRIPTS{$entry->[2]}}, $entry;
629 _charscripts() unless @SCRIPTS;
631 my $code = _getcode($arg);
634 my $result = _search(\@SCRIPTS, 0, $#SCRIPTS, $code);
635 return $result if defined $result;
636 return $utf8::SwashInfo{'ToSc'}{'missing'};
637 } elsif (exists $SCRIPTS{$arg}) {
638 return dclone $SCRIPTS{$arg};
644 =head2 B<charblocks()>
646 use Unicode::UCD 'charblocks';
648 my $charblocks = charblocks();
650 charblocks() returns a reference to a hash with the known block names
651 as the keys, and the code point ranges (see L</charblock()>) as the values.
653 The names are in the old-style (see L</Old-style versus new-style block
656 L<prop_invmap("block")|/prop_invmap()> can be used to get this same data in a
657 different type of data structure.
659 See also L</Blocks versus Scripts>.
664 _charblocks() unless %BLOCKS;
665 return dclone \%BLOCKS;
668 =head2 B<charscripts()>
670 use Unicode::UCD 'charscripts';
672 my $charscripts = charscripts();
674 charscripts() returns a reference to a hash with the known script
675 names as the keys, and the code point ranges (see L</charscript()>) as
678 L<prop_invmap("script")|/prop_invmap()> can be used to get this same data in a
679 different type of data structure.
681 See also L</Blocks versus Scripts>.
686 _charscripts() unless %SCRIPTS;
687 return dclone \%SCRIPTS;
690 =head2 B<charinrange()>
692 In addition to using the C<\p{Blk=...}> and C<\P{Blk=...}> constructs, you
693 can also test whether a code point is in the I<range> as returned by
694 L</charblock()> and L</charscript()> or as the values of the hash returned
695 by L</charblocks()> and L</charscripts()> by using charinrange():
697 use Unicode::UCD qw(charscript charinrange);
699 $range = charscript('Hiragana');
700 print "looks like hiragana\n" if charinrange($range, $codepoint);
704 my %GENERAL_CATEGORIES =
707 'LC' => 'CasedLetter',
708 'Lu' => 'UppercaseLetter',
709 'Ll' => 'LowercaseLetter',
710 'Lt' => 'TitlecaseLetter',
711 'Lm' => 'ModifierLetter',
712 'Lo' => 'OtherLetter',
714 'Mn' => 'NonspacingMark',
715 'Mc' => 'SpacingMark',
716 'Me' => 'EnclosingMark',
718 'Nd' => 'DecimalNumber',
719 'Nl' => 'LetterNumber',
720 'No' => 'OtherNumber',
721 'P' => 'Punctuation',
722 'Pc' => 'ConnectorPunctuation',
723 'Pd' => 'DashPunctuation',
724 'Ps' => 'OpenPunctuation',
725 'Pe' => 'ClosePunctuation',
726 'Pi' => 'InitialPunctuation',
727 'Pf' => 'FinalPunctuation',
728 'Po' => 'OtherPunctuation',
730 'Sm' => 'MathSymbol',
731 'Sc' => 'CurrencySymbol',
732 'Sk' => 'ModifierSymbol',
733 'So' => 'OtherSymbol',
735 'Zs' => 'SpaceSeparator',
736 'Zl' => 'LineSeparator',
737 'Zp' => 'ParagraphSeparator',
742 'Co' => 'PrivateUse',
743 'Cn' => 'Unassigned',
746 sub general_categories {
747 return dclone \%GENERAL_CATEGORIES;
750 =head2 B<general_categories()>
752 use Unicode::UCD 'general_categories';
754 my $categories = general_categories();
756 This returns a reference to a hash which has short
757 general category names (such as C<Lu>, C<Nd>, C<Zs>, C<S>) as keys and long
758 names (such as C<UppercaseLetter>, C<DecimalNumber>, C<SpaceSeparator>,
759 C<Symbol>) as values. The hash is reversible in case you need to go
760 from the long names to the short names. The general category is the
762 L</charinfo()> under the C<category> key.
764 The L</prop_value_aliases()> function can be used to get all the synonyms of
771 'L' => 'Left-to-Right',
772 'LRE' => 'Left-to-Right Embedding',
773 'LRO' => 'Left-to-Right Override',
774 'R' => 'Right-to-Left',
775 'AL' => 'Right-to-Left Arabic',
776 'RLE' => 'Right-to-Left Embedding',
777 'RLO' => 'Right-to-Left Override',
778 'PDF' => 'Pop Directional Format',
779 'EN' => 'European Number',
780 'ES' => 'European Number Separator',
781 'ET' => 'European Number Terminator',
782 'AN' => 'Arabic Number',
783 'CS' => 'Common Number Separator',
784 'NSM' => 'Non-Spacing Mark',
785 'BN' => 'Boundary Neutral',
786 'B' => 'Paragraph Separator',
787 'S' => 'Segment Separator',
788 'WS' => 'Whitespace',
789 'ON' => 'Other Neutrals',
792 =head2 B<bidi_types()>
794 use Unicode::UCD 'bidi_types';
796 my $categories = bidi_types();
798 This returns a reference to a hash which has the short
799 bidi (bidirectional) type names (such as C<L>, C<R>) as keys and long
800 names (such as C<Left-to-Right>, C<Right-to-Left>) as values. The
801 hash is reversible in case you need to go from the long names to the
802 short names. The bidi type is the one returned from
804 under the C<bidi> key. For the exact meaning of the various bidi classes
805 the Unicode TR9 is recommended reading:
806 L<http://www.unicode.org/reports/tr9/>
807 (as of Unicode 5.0.0)
809 The L</prop_value_aliases()> function can be used to get all the synonyms of
815 return dclone \%BIDI_TYPES;
820 use Unicode::UCD 'compexcl';
822 my $compexcl = compexcl(0x09dc);
824 This routine is included for backwards compatibility, but as of Perl 5.12, for
825 most purposes it is probably more convenient to use one of the following
828 my $compexcl = chr(0x09dc) =~ /\p{Comp_Ex};
829 my $compexcl = chr(0x09dc) =~ /\p{Full_Composition_Exclusion};
833 my $compexcl = chr(0x09dc) =~ /\p{CE};
834 my $compexcl = chr(0x09dc) =~ /\p{Composition_Exclusion};
836 The first two forms return B<true> if the L</code point argument> should not
837 be produced by composition normalization. For the final two forms to return
838 B<true>, it is additionally required that this fact not otherwise be
839 determinable from the Unicode data base.
841 This routine behaves identically to the final two forms. That is,
842 it does not return B<true> if the code point has a decomposition
843 consisting of another single code point, nor if its decomposition starts
844 with a code point whose combining class is non-zero. Code points that meet
845 either of these conditions should also not be produced by composition
846 normalization, which is probably why you should use the
847 C<Full_Composition_Exclusion> property instead, as shown above.
849 The routine returns B<false> otherwise.
855 my $code = _getcode($arg);
856 croak __PACKAGE__, "::compexcl: unknown code '$arg'"
857 unless defined $code;
859 no warnings "non_unicode"; # So works on non-Unicode code points
860 return chr($code) =~ /\p{Composition_Exclusion}/;
865 use Unicode::UCD 'casefold';
867 my $casefold = casefold(0xDF);
868 if (defined $casefold) {
869 my @full_fold_hex = split / /, $casefold->{'full'};
870 my $full_fold_string =
871 join "", map {chr(hex($_))} @full_fold_hex;
872 my @turkic_fold_hex =
873 split / /, ($casefold->{'turkic'} ne "")
874 ? $casefold->{'turkic'}
875 : $casefold->{'full'};
876 my $turkic_fold_string =
877 join "", map {chr(hex($_))} @turkic_fold_hex;
879 if (defined $casefold && $casefold->{'simple'} ne "") {
880 my $simple_fold_hex = $casefold->{'simple'};
881 my $simple_fold_string = chr(hex($simple_fold_hex));
884 This returns the (almost) locale-independent case folding of the
885 character specified by the L</code point argument>.
887 If there is no case folding for that code point, C<undef> is returned.
889 If there is a case folding for that code point, a reference to a hash
890 with the following fields is returned:
896 the input L</code point argument> expressed in hexadecimal, with leading zeros
897 added if necessary to make it contain at least four hexdigits
901 one or more codes (separated by spaces) that, taken in order, give the
902 code points for the case folding for I<code>.
903 Each has at least four hexdigits.
907 is empty, or is exactly one code with at least four hexdigits which can be used
908 as an alternative case folding when the calling program cannot cope with the
909 fold being a sequence of multiple code points. If I<full> is just one code
910 point, then I<simple> equals I<full>. If there is no single code point folding
911 defined for I<code>, then I<simple> is the empty string. Otherwise, it is an
912 inferior, but still better-than-nothing alternative folding to I<full>.
916 is the same as I<simple> if I<simple> is not empty, and it is the same as I<full>
917 otherwise. It can be considered to be the simplest possible folding for
918 I<code>. It is defined primarily for backwards compatibility.
922 is C<C> (for C<common>) if the best possible fold is a single code point
923 (I<simple> equals I<full> equals I<mapping>). It is C<S> if there are distinct
924 folds, I<simple> and I<full> (I<mapping> equals I<simple>). And it is C<F> if
925 there is only a I<full> fold (I<mapping> equals I<full>; I<simple> is empty).
927 describes the contents of I<mapping>. It is defined primarily for backwards
930 On versions 3.1 and earlier of Unicode, I<status> can also be
931 C<I> which is the same as C<C> but is a special case for dotted uppercase I and
936 =item B<*> If you use this C<I> mapping
938 the result is case-insensitive,
939 but dotless and dotted I's are not distinguished
941 =item B<*> If you exclude this C<I> mapping
943 the result is not fully case-insensitive, but
944 dotless and dotted I's are distinguished
950 contains any special folding for Turkic languages. For versions of Unicode
951 starting with 3.2, this field is empty unless I<code> has a different folding
952 in Turkic languages, in which case it is one or more codes (separated by
953 spaces) that, taken in order, give the code points for the case folding for
954 I<code> in those languages.
955 Each code has at least four hexdigits.
956 Note that this folding does not maintain canonical equivalence without
957 additional processing.
959 For versions of Unicode 3.1 and earlier, this field is empty unless there is a
960 special folding for Turkic languages, in which case I<status> is C<I>, and
961 I<mapping>, I<full>, I<simple>, and I<turkic> are all equal.
965 Programs that want complete generality and the best folding results should use
966 the folding contained in the I<full> field. But note that the fold for some
967 code points will be a sequence of multiple code points.
969 Programs that can't cope with the fold mapping being multiple code points can
970 use the folding contained in the I<simple> field, with the loss of some
971 generality. In Unicode 5.1, about 7% of the defined foldings have no single
974 The I<mapping> and I<status> fields are provided for backwards compatibility for
975 existing programs. They contain the same values as in previous versions of
978 Locale is not completely independent. The I<turkic> field contains results to
979 use when the locale is a Turkic language.
981 For more information about case mappings see
982 L<http://www.unicode.org/unicode/reports/tr21>
990 if (openunicode(\$CASEFOLDFH, "CaseFolding.txt")) {
993 while (<$CASEFOLDFH>) {
994 if (/^([0-9A-F]+); ([CFIST]); ([0-9A-F]+(?: [0-9A-F]+)*);/) {
996 $CASEFOLD{$code}{'code'} = $1;
997 $CASEFOLD{$code}{'turkic'} = "" unless
998 defined $CASEFOLD{$code}{'turkic'};
999 if ($2 eq 'C' || $2 eq 'I') { # 'I' is only on 3.1 and
1001 # Both entries there (I
1002 # only checked 3.1) are
1003 # the same as C, and
1004 # there are no other
1006 # codepoints, so treat
1007 # as if C, but override
1008 # the turkic one for
1010 $CASEFOLD{$code}{'status'} = $2;
1011 $CASEFOLD{$code}{'full'} = $CASEFOLD{$code}{'simple'} =
1012 $CASEFOLD{$code}{'mapping'} = $3;
1013 $CASEFOLD{$code}{'turkic'} = $3 if $2 eq 'I';
1014 } elsif ($2 eq 'F') {
1015 $CASEFOLD{$code}{'full'} = $3;
1016 unless (defined $CASEFOLD{$code}{'simple'}) {
1017 $CASEFOLD{$code}{'simple'} = "";
1018 $CASEFOLD{$code}{'mapping'} = $3;
1019 $CASEFOLD{$code}{'status'} = $2;
1021 } elsif ($2 eq 'S') {
1024 # There can't be a simple without a full, and simple
1025 # overrides all but full
1027 $CASEFOLD{$code}{'simple'} = $3;
1028 $CASEFOLD{$code}{'mapping'} = $3;
1029 $CASEFOLD{$code}{'status'} = $2;
1030 } elsif ($2 eq 'T') {
1031 $CASEFOLD{$code}{'turkic'} = $3;
1032 } # else can't happen because only [CIFST] are possible
1042 my $code = _getcode($arg);
1043 croak __PACKAGE__, "::casefold: unknown code '$arg'"
1044 unless defined $code;
1046 _casefold() unless %CASEFOLD;
1048 return $CASEFOLD{$code};
1051 =head2 B<casespec()>
1053 use Unicode::UCD 'casespec';
1055 my $casespec = casespec(0xFB00);
1057 This returns the potentially locale-dependent case mappings of the L</code point
1058 argument>. The mappings may be longer than a single code point (which the basic
1059 Unicode case mappings as returned by L</charinfo()> never are).
1061 If there are no case mappings for the L</code point argument>, or if all three
1062 possible mappings (I<lower>, I<title> and I<upper>) result in single code
1063 points and are locale independent and unconditional, C<undef> is returned
1064 (which means that the case mappings, if any, for the code point are those
1065 returned by L</charinfo()>).
1067 Otherwise, a reference to a hash giving the mappings (or a reference to a hash
1068 of such hashes, explained below) is returned with the following keys and their
1071 The keys in the bottom layer hash with the meanings of their values are:
1077 the input L</code point argument> expressed in hexadecimal, with leading zeros
1078 added if necessary to make it contain at least four hexdigits
1082 one or more codes (separated by spaces) that, taken in order, give the
1083 code points for the lower case of I<code>.
1084 Each has at least four hexdigits.
1088 one or more codes (separated by spaces) that, taken in order, give the
1089 code points for the title case of I<code>.
1090 Each has at least four hexdigits.
1094 one or more codes (separated by spaces) that, taken in order, give the
1095 code points for the upper case of I<code>.
1096 Each has at least four hexdigits.
1100 the conditions for the mappings to be valid.
1101 If C<undef>, the mappings are always valid.
1102 When defined, this field is a list of conditions,
1103 all of which must be true for the mappings to be valid.
1104 The list consists of one or more
1105 I<locales> (see below)
1106 and/or I<contexts> (explained in the next paragraph),
1107 separated by spaces.
1108 (Other than as used to separate elements, spaces are to be ignored.)
1109 Case distinctions in the condition list are not significant.
1110 Conditions preceded by "NON_" represent the negation of the condition.
1112 A I<context> is one of those defined in the Unicode standard.
1113 For Unicode 5.1, they are defined in Section 3.13 C<Default Case Operations>
1115 L<http://www.unicode.org/versions/Unicode5.1.0/>.
1116 These are for context-sensitive casing.
1120 The hash described above is returned for locale-independent casing, where
1121 at least one of the mappings has length longer than one. If C<undef> is
1122 returned, the code point may have mappings, but if so, all are length one,
1123 and are returned by L</charinfo()>.
1124 Note that when this function does return a value, it will be for the complete
1125 set of mappings for a code point, even those whose length is one.
1127 If there are additional casing rules that apply only in certain locales,
1128 an additional key for each will be defined in the returned hash. Each such key
1129 will be its locale name, defined as a 2-letter ISO 3166 country code, possibly
1130 followed by a "_" and a 2-letter ISO language code (possibly followed by a "_"
1131 and a variant code). You can find the lists of all possible locales, see
1132 L<Locale::Country> and L<Locale::Language>.
1133 (In Unicode 6.0, the only locales returned by this function
1134 are C<lt>, C<tr>, and C<az>.)
1136 Each locale key is a reference to a hash that has the form above, and gives
1137 the casing rules for that particular locale, which take precedence over the
1138 locale-independent ones when in that locale.
1140 If the only casing for a code point is locale-dependent, then the returned
1141 hash will not have any of the base keys, like C<code>, C<upper>, etc., but
1142 will contain only locale keys.
1144 For more information about case mappings see
1145 L<http://www.unicode.org/unicode/reports/tr21/>
1152 unless (%CASESPEC) {
1153 if (openunicode(\$CASESPECFH, "SpecialCasing.txt")) {
1156 while (<$CASESPECFH>) {
1157 if (/^([0-9A-F]+); ([0-9A-F]+(?: [0-9A-F]+)*)?; ([0-9A-F]+(?: [0-9A-F]+)*)?; ([0-9A-F]+(?: [0-9A-F]+)*)?; (\w+(?: \w+)*)?/) {
1158 my ($hexcode, $lower, $title, $upper, $condition) =
1159 ($1, $2, $3, $4, $5);
1160 my $code = hex($hexcode);
1161 if (exists $CASESPEC{$code}) {
1162 if (exists $CASESPEC{$code}->{code}) {
1167 @{$CASESPEC{$code}}{qw(lower
1171 if (defined $oldcondition) {
1173 ($oldcondition =~ /^([a-z][a-z](?:_\S+)?)/);
1174 delete $CASESPEC{$code};
1175 $CASESPEC{$code}->{$oldlocale} =
1180 condition => $oldcondition };
1184 ($condition =~ /^([a-z][a-z](?:_\S+)?)/);
1185 $CASESPEC{$code}->{$locale} =
1190 condition => $condition };
1197 condition => $condition };
1208 my $code = _getcode($arg);
1209 croak __PACKAGE__, "::casespec: unknown code '$arg'"
1210 unless defined $code;
1212 _casespec() unless %CASESPEC;
1214 return ref $CASESPEC{$code} ? dclone $CASESPEC{$code} : $CASESPEC{$code};
1217 =head2 B<namedseq()>
1219 use Unicode::UCD 'namedseq';
1221 my $namedseq = namedseq("KATAKANA LETTER AINU P");
1222 my @namedseq = namedseq("KATAKANA LETTER AINU P");
1223 my %namedseq = namedseq();
1225 If used with a single argument in a scalar context, returns the string
1226 consisting of the code points of the named sequence, or C<undef> if no
1227 named sequence by that name exists. If used with a single argument in
1228 a list context, it returns the list of the ordinals of the code points. If used
1230 arguments in a list context, returns a hash with the names of the
1231 named sequences as the keys and the named sequences as strings as
1232 the values. Otherwise, it returns C<undef> or an empty list depending
1235 This function only operates on officially approved (not provisional) named
1238 Note that as of Perl 5.14, C<\N{KATAKANA LETTER AINU P}> will insert the named
1239 sequence into double-quoted strings, and C<charnames::string_vianame("KATAKANA
1240 LETTER AINU P")> will return the same string this function does, but will also
1241 operate on character names that aren't named sequences, without you having to
1242 know which are which. See L<charnames>.
1249 unless (%NAMEDSEQ) {
1250 if (openunicode(\$NAMEDSEQFH, "Name.pl")) {
1253 while (<$NAMEDSEQFH>) {
1254 if (/^ [0-9A-F]+ \ /x) {
1256 my ($sequence, $name) = split /\t/;
1257 my @s = map { chr(hex($_)) } split(' ', $sequence);
1258 $NAMEDSEQ{$name} = join("", @s);
1268 # Use charnames::string_vianame() which now returns this information,
1269 # unless the caller wants the hash returned, in which case we read it in,
1270 # and thereafter use it instead of calling charnames, as it is faster.
1272 my $wantarray = wantarray();
1273 if (defined $wantarray) {
1276 _namedseq() unless %NAMEDSEQ;
1281 $s = $NAMEDSEQ{ $_[0] };
1284 $s = charnames::string_vianame($_[0]);
1286 return defined $s ? map { ord($_) } split('', $s) : ();
1289 return $NAMEDSEQ{ $_[0] } if %NAMEDSEQ;
1290 return charnames::string_vianame($_[0]);
1300 # Unicode 6.0 instituted the rule that only digits in a consecutive
1301 # block of 10 would be considered decimal digits. Before that, the only
1302 # problematic code point that I'm (khw) aware of is U+019DA, NEW TAI LUE
1303 # THAM DIGIT ONE, which is an alternate form of U+019D1, NEW TAI LUE DIGIT
1304 # ONE. The code could be modified to handle that, but not bothering, as
1305 # in TUS 6.0, U+19DA was changed to Nt=Di.
1306 if ((pack "C*", split /\./, UnicodeVersion()) lt 6.0.0) {
1307 croak __PACKAGE__, "::num requires Unicode 6.0 or greater"
1309 my @numbers = _read_table("unicore/To/Nv.pl");
1310 foreach my $entry (@numbers) {
1311 my ($start, $end, $value) = @$entry;
1313 # If value contains a slash, convert to decimal, add a reverse hash
1315 if ((my @rational = split /\//, $value) == 2) {
1316 my $real = $rational[0] / $rational[1];
1317 $real_to_rational{$real} = $value;
1321 for my $i ($start .. $end) {
1322 $NUMERIC{$i} = $value;
1326 # Decided unsafe to use these that aren't officially part of the Unicode
1329 #my $pi = acos(-1.0);
1330 #$NUMERIC{0x03C0} = $pi;
1332 # Euler's constant, not to be confused with Euler's number
1333 #$NUMERIC{0x2107} = 0.57721566490153286060651209008240243104215933593992;
1336 #$NUMERIC{0x212F} = 2.7182818284590452353602874713526624977572;
1345 use Unicode::UCD 'num';
1347 my $val = num("123");
1348 my $one_quarter = num("\N{VULGAR FRACTION 1/4}");
1350 C<num> returns the numeric value of the input Unicode string; or C<undef> if it
1351 doesn't think the entire string has a completely valid, safe numeric value.
1353 If the string is just one character in length, the Unicode numeric value
1354 is returned if it has one, or C<undef> otherwise. Note that this need
1355 not be a whole number. C<num("\N{TIBETAN DIGIT HALF ZERO}")>, for
1356 example returns -0.5.
1360 #A few characters to which Unicode doesn't officially
1361 #assign a numeric value are considered numeric by C<num>.
1364 # EULER CONSTANT 0.5772... (this is NOT Euler's number)
1365 # SCRIPT SMALL E 2.71828... (this IS Euler's number)
1366 # GREEK SMALL LETTER PI 3.14159...
1370 If the string is more than one character, C<undef> is returned unless
1371 all its characters are decimal digits (that is, they would match C<\d+>),
1372 from the same script. For example if you have an ASCII '0' and a Bengali
1373 '3', mixed together, they aren't considered a valid number, and C<undef>
1374 is returned. A further restriction is that the digits all have to be of
1375 the same form. A half-width digit mixed with a full-width one will
1376 return C<undef>. The Arabic script has two sets of digits; C<num> will
1377 return C<undef> unless all the digits in the string come from the same
1380 C<num> errs on the side of safety, and there may be valid strings of
1381 decimal digits that it doesn't recognize. Note that Unicode defines
1382 a number of "digit" characters that aren't "decimal digit" characters.
1383 "Decimal digits" have the property that they have a positional value, i.e.,
1384 there is a units position, a 10's position, a 100's, etc, AND they are
1385 arranged in Unicode in blocks of 10 contiguous code points. The Chinese
1386 digits, for example, are not in such a contiguous block, and so Unicode
1387 doesn't view them as decimal digits, but merely digits, and so C<\d> will not
1388 match them. A single-character string containing one of these digits will
1389 have its decimal value returned by C<num>, but any longer string containing
1390 only these digits will return C<undef>.
1392 Strings of multiple sub- and superscripts are not recognized as numbers. You
1393 can use either of the compatibility decompositions in Unicode::Normalize to
1394 change these into digits, and then call C<num> on the result.
1398 # To handle sub, superscripts, this could if called in list context,
1399 # consider those, and return the <decomposition> type in the second
1405 _numeric unless %NUMERIC;
1407 my $length = length($string);
1408 return $NUMERIC{ord($string)} if $length == 1;
1409 return if $string =~ /\D/;
1410 my $first_ord = ord(substr($string, 0, 1));
1411 my $value = $NUMERIC{$first_ord};
1412 my $zero_ord = $first_ord - $value;
1414 for my $i (1 .. $length -1) {
1415 my $ord = ord(substr($string, $i, 1));
1416 my $digit = $ord - $zero_ord;
1417 return unless $digit >= 0 && $digit <= 9;
1418 $value = $value * 10 + $digit;
1425 =head2 B<prop_aliases()>
1427 use Unicode::UCD 'prop_aliases';
1429 my ($short_name, $full_name, @other_names) = prop_aliases("space");
1430 my $same_full_name = prop_aliases("Space"); # Scalar context
1431 my ($same_short_name) = prop_aliases("Space"); # gets 0th element
1432 print "The full name is $full_name\n";
1433 print "The short name is $short_name\n";
1434 print "The other aliases are: ", join(", ", @other_names), "\n";
1437 The full name is White_Space
1438 The short name is WSpace
1439 The other aliases are: Space
1441 Most Unicode properties have several synonymous names. Typically, there is at
1442 least a short name, convenient to type, and a long name that more fully
1443 describes the property, and hence is more easily understood.
1445 If you know one name for a Unicode property, you can use C<prop_aliases> to find
1446 either the long name (when called in scalar context), or a list of all of the
1447 names, somewhat ordered so that the short name is in the 0th element, the long
1448 name in the next element, and any other synonyms are in the remaining
1449 elements, in no particular order.
1451 The long name is returned in a form nicely capitalized, suitable for printing.
1453 The input parameter name is loosely matched, which means that white space,
1454 hyphens, and underscores are ignored (except for the trailing underscore in
1455 the old_form grandfathered-in C<"L_">, which is better written as C<"LC">, and
1456 both of which mean C<General_Category=Cased Letter>).
1458 If the name is unknown, C<undef> is returned (or an empty list in list
1459 context). Note that Perl typically recognizes property names in regular
1460 expressions with an optional C<"Is_>" (with or without the underscore)
1461 prefixed to them, such as C<\p{isgc=punct}>. This function does not recognize
1462 those in the input, returning C<undef>. Nor are they included in the output
1463 as possible synonyms.
1465 C<prop_aliases> does know about the Perl extensions to Unicode properties,
1466 such as C<Any> and C<XPosixAlpha>, and the single form equivalents to Unicode
1467 properties such as C<XDigit>, C<Greek>, C<In_Greek>, and C<Is_Greek>. The
1468 final example demonstrates that the C<"Is_"> prefix is recognized for these
1469 extensions; it is needed to resolve ambiguities. For example,
1470 C<prop_aliases('lc')> returns the list C<(lc, Lowercase_Mapping)>, but
1471 C<prop_aliases('islc')> returns C<(Is_LC, Cased_Letter)>. This is
1472 because C<islc> is a Perl extension which is short for
1473 C<General_Category=Cased Letter>. The lists returned for the Perl extensions
1474 will not include the C<"Is_"> prefix (whether or not the input had it) unless
1475 needed to resolve ambiguities, as shown in the C<"islc"> example, where the
1476 returned list had one element containing C<"Is_">, and the other without.
1478 It is also possible for the reverse to happen: C<prop_aliases('isc')> returns
1479 the list C<(isc, ISO_Comment)>; whereas C<prop_aliases('c')> returns
1480 C<(C, Other)> (the latter being a Perl extension meaning
1481 C<General_Category=Other>.
1482 L<perluniprops/Properties accessible through Unicode::UCD> lists the available
1483 forms, including which ones are discouraged from use.
1485 Those discouraged forms are accepted as input to C<prop_aliases>, but are not
1486 returned in the lists. C<prop_aliases('isL&')> and C<prop_aliases('isL_')>,
1487 which are old synonyms for C<"Is_LC"> and should not be used in new code, are
1488 examples of this. These both return C<(Is_LC, Cased_Letter)>. Thus this
1489 function allows you to take a discourarged form, and find its acceptable
1490 alternatives. The same goes with single-form Block property equivalences.
1491 Only the forms that begin with C<"In_"> are not discouraged; if you pass
1492 C<prop_aliases> a discouraged form, you will get back the equivalent ones that
1493 begin with C<"In_">. It will otherwise look like a new-style block name (see.
1494 L</Old-style versus new-style block names>).
1496 C<prop_aliases> does not know about any user-defined properties, and will
1497 return C<undef> if called with one of those. Likewise for Perl internal
1498 properties, with the exception of "Perl_Decimal_Digit" which it does know
1499 about (and which is documented below in L</prop_invmap()>).
1503 # It may be that there are use cases where the discouraged forms should be
1504 # returned. If that comes up, an optional boolean second parameter to the
1505 # function could be created, for example.
1507 # These are created by mktables for this routine and stored in unicore/UCD.pl
1508 # where their structures are described.
1509 our %string_property_loose_to_name;
1510 our %ambiguous_names;
1511 our %loose_perlprop_to_name;
1514 sub prop_aliases ($) {
1516 return unless defined $prop;
1518 require "unicore/UCD.pl";
1519 require "unicore/Heavy.pl";
1520 require "utf8_heavy.pl";
1522 # The property name may be loosely or strictly matched; we don't know yet.
1523 # But both types use lower-case.
1526 # It is loosely matched if its lower case isn't known to be strict.
1528 if (! exists $utf8::stricter_to_file_of{$prop}) {
1529 my $loose = utf8::_loose_name($prop);
1531 # There is a hash that converts from any loose name to its standard
1532 # form, mapping all synonyms for a name to one name that can be used
1533 # as a key into another hash. The whole concept is for memory
1534 # savings, as the second hash doesn't have to have all the
1535 # combinations. Actually, there are two hashes that do the
1536 # converstion. One is used in utf8_heavy.pl (stored in Heavy.pl) for
1537 # looking up properties matchable in regexes. This function needs to
1538 # access string properties, which aren't available in regexes, so a
1539 # second conversion hash is made for them (stored in UCD.pl). Look in
1540 # the string one now, as the rest can have an optional 'is' prefix,
1541 # which these don't.
1542 if (exists $string_property_loose_to_name{$loose}) {
1544 # Convert to its standard loose name.
1545 $prop = $string_property_loose_to_name{$loose};
1548 my $retrying = 0; # bool. ? Has an initial 'is' been stripped
1550 if (exists $utf8::loose_property_name_of{$loose}
1552 || ! exists $ambiguous_names{$loose}))
1554 # Found an entry giving the standard form. We don't get here
1555 # (in the test above) when we've stripped off an
1556 # 'is' and the result is an ambiguous name. That is because
1557 # these are official Unicode properties (though Perl can have
1558 # an optional 'is' prefix meaning the official property), and
1559 # all ambiguous cases involve a Perl single-form extension
1560 # for the gc, script, or block properties, and the stripped
1561 # 'is' means that they mean one of those, and not one of
1563 $prop = $utf8::loose_property_name_of{$loose};
1565 elsif (exists $loose_perlprop_to_name{$loose}) {
1567 # This hash is specifically for this function to list Perl
1568 # extensions that aren't in the earlier hashes. If there is
1569 # only one element, the short and long names are identical.
1570 # Otherwise the form is already in the same form as
1571 # %prop_aliases, which is handled at the end of the function.
1572 $list_ref = $loose_perlprop_to_name{$loose};
1573 if (@$list_ref == 1) {
1574 my @list = ($list_ref->[0], $list_ref->[0]);
1578 elsif (! exists $utf8::loose_to_file_of{$loose}) {
1580 # loose_to_file_of is a complete list of loose names. If not
1581 # there, the input is unknown.
1586 # Here we found the name but not its aliases, so it has to
1587 # exist. This means it must be one of the Perl single-form
1588 # extensions. First see if it is for a property-value
1589 # combination in one of the following properties.
1591 foreach my $property ("gc", "script") {
1592 @list = prop_value_aliases($property, $loose);
1597 # Here, it is one of those property-value combination
1598 # single-form synonyms. There are ambiguities with some
1599 # of these. Check against the list for these, and adjust
1601 for my $i (0 .. @list -1) {
1602 if (exists $ambiguous_names
1603 {utf8::_loose_name(lc $list[$i])})
1605 # The ambiguity is resolved by toggling whether or
1606 # not it has an 'is' prefix
1607 $list[$i] =~ s/^Is_// or $list[$i] =~ s/^/Is_/;
1613 # Here, it wasn't one of the gc or script single-form
1614 # extensions. It could be a block property single-form
1615 # extension. An 'in' prefix definitely means that, and should
1616 # be looked up without the prefix. However, starting in
1617 # Unicode 6.1, we have to special case 'indic...', as there
1618 # is a property that begins with that name. We shouldn't
1619 # strip the 'in' from that. I'm (khw) generalizing this to
1620 # 'indic' instead of the single property, because I suspect
1621 # that others of this class may come along in the future.
1622 # However, this could backfire and a block created whose name
1623 # begins with 'dic...', and we would want to strip the 'in'.
1624 # At which point this would have to be tweaked.
1625 my $began_with_in = $loose =~ s/^in(?!dic)//;
1626 @list = prop_value_aliases("block", $loose);
1628 map { $_ =~ s/^/In_/ } @list;
1632 # Here still haven't found it. The last opportunity for it
1633 # being valid is only if it began with 'is'. We retry without
1634 # the 'is', setting a flag to that effect so that we don't
1635 # accept things that begin with 'isis...'
1636 if (! $retrying && ! $began_with_in && $loose =~ s/^is//) {
1641 # Here, didn't find it. Since it was in %loose_to_file_of, we
1642 # should have been able to find it.
1643 carp __PACKAGE__, "::prop_aliases: Unexpectedly could not find '$prop'. Send bug report to perlbug\@perl.org";
1650 # Here, we have set $prop to a standard form name of the input. Look
1651 # it up in the structure created by mktables for this purpose, which
1652 # contains both strict and loosely matched properties. Avoid
1654 $list_ref = $prop_aliases{$prop} if exists $prop_aliases{$prop};
1655 return unless $list_ref;
1658 # The full name is in element 1.
1659 return $list_ref->[1] unless wantarray;
1661 return @{dclone $list_ref};
1666 =head2 B<prop_value_aliases()>
1668 use Unicode::UCD 'prop_value_aliases';
1670 my ($short_name, $full_name, @other_names)
1671 = prop_value_aliases("Gc", "Punct");
1672 my $same_full_name = prop_value_aliases("Gc", "P"); # Scalar cntxt
1673 my ($same_short_name) = prop_value_aliases("Gc", "P"); # gets 0th
1675 print "The full name is $full_name\n";
1676 print "The short name is $short_name\n";
1677 print "The other aliases are: ", join(", ", @other_names), "\n";
1680 The full name is Punctuation
1682 The other aliases are: Punct
1684 Some Unicode properties have a restricted set of legal values. For example,
1685 all binary properties are restricted to just C<true> or C<false>; and there
1686 are only a few dozen possible General Categories.
1688 For such properties, there are usually several synonyms for each possible
1689 value. For example, in binary properties, I<truth> can be represented by any of
1690 the strings "Y", "Yes", "T", or "True"; and the General Category
1691 "Punctuation" by that string, or "Punct", or simply "P".
1693 Like property names, there is typically at least a short name for each such
1694 property-value, and a long name. If you know any name of the property-value,
1695 you can use C<prop_value_aliases>() to get the long name (when called in
1696 scalar context), or a list of all the names, with the short name in the 0th
1697 element, the long name in the next element, and any other synonyms in the
1698 remaining elements, in no particular order, except that any all-numeric
1699 synonyms will be last.
1701 The long name is returned in a form nicely capitalized, suitable for printing.
1703 Case, white space, hyphens, and underscores are ignored in the input parameters
1704 (except for the trailing underscore in the old-form grandfathered-in general
1705 category property value C<"L_">, which is better written as C<"LC">).
1707 If either name is unknown, C<undef> is returned. Note that Perl typically
1708 recognizes property names in regular expressions with an optional C<"Is_>"
1709 (with or without the underscore) prefixed to them, such as C<\p{isgc=punct}>.
1710 This function does not recognize those in the property parameter, returning
1713 If called with a property that doesn't have synonyms for its values, it
1714 returns the input value, possibly normalized with capitalization and
1717 For the block property, new-style block names are returned (see
1718 L</Old-style versus new-style block names>).
1720 To find the synonyms for single-forms, such as C<\p{Any}>, use
1721 L</prop_aliases()> instead.
1723 C<prop_value_aliases> does not know about any user-defined properties, and
1724 will return C<undef> if called with one of those.
1728 # These are created by mktables for this routine and stored in unicore/UCD.pl
1729 # where their structures are described.
1730 our %loose_to_standard_value;
1731 our %prop_value_aliases;
1733 sub prop_value_aliases ($$) {
1734 my ($prop, $value) = @_;
1735 return unless defined $prop && defined $value;
1737 require "unicore/UCD.pl";
1738 require "utf8_heavy.pl";
1740 # Find the property name synonym that's used as the key in other hashes,
1741 # which is element 0 in the returned list.
1742 ($prop) = prop_aliases($prop);
1744 $prop = utf8::_loose_name(lc $prop);
1746 # Here is a legal property, but the hash below (created by mktables for
1747 # this purpose) only knows about the properties that have a very finite
1748 # number of potential values, that is not ones whose value could be
1749 # anything, like most (if not all) string properties. These don't have
1750 # synonyms anyway. Simply return the input. For example, there is no
1751 # synonym for ('Uppercase_Mapping', A').
1752 return $value if ! exists $prop_value_aliases{$prop};
1754 # The value name may be loosely or strictly matched; we don't know yet.
1755 # But both types use lower-case.
1758 # If the name isn't found under loose matching, it certainly won't be
1759 # found under strict
1760 my $loose_value = utf8::_loose_name($value);
1761 return unless exists $loose_to_standard_value{"$prop=$loose_value"};
1763 # Similarly if the combination under loose matching doesn't exist, it
1764 # won't exist under strict.
1765 my $standard_value = $loose_to_standard_value{"$prop=$loose_value"};
1766 return unless exists $prop_value_aliases{$prop}{$standard_value};
1768 # Here we did find a combination under loose matching rules. But it could
1769 # be that is a strict property match that shouldn't have matched.
1770 # %prop_value_aliases is set up so that the strict matches will appear as
1771 # if they were in loose form. Thus, if the non-loose version is legal,
1772 # we're ok, can skip the further check.
1773 if (! exists $utf8::stricter_to_file_of{"$prop=$value"}
1775 # We're also ok and skip the further check if value loosely matches.
1776 # mktables has verified that no strict name under loose rules maps to
1777 # an existing loose name. This code relies on the very limited
1778 # circumstances that strict names can be here. Strict name matching
1779 # happens under two conditions:
1780 # 1) when the name begins with an underscore. But this function
1781 # doesn't accept those, and %prop_value_aliases doesn't have
1783 # 2) When the values are numeric, in which case we need to look
1784 # further, but their squeezed-out loose values will be in
1785 # %stricter_to_file_of
1786 && exists $utf8::stricter_to_file_of{"$prop=$loose_value"})
1788 # The only thing that's legal loosely under strict is that can have an
1789 # underscore between digit pairs XXX
1790 while ($value =~ s/(\d)_(\d)/$1$2/g) {}
1791 return unless exists $utf8::stricter_to_file_of{"$prop=$value"};
1794 # Here, we know that the combination exists. Return it.
1795 my $list_ref = $prop_value_aliases{$prop}{$standard_value};
1796 if (@$list_ref > 1) {
1797 # The full name is in element 1.
1798 return $list_ref->[1] unless wantarray;
1800 return @{dclone $list_ref};
1803 return $list_ref->[0] unless wantarray;
1805 # Only 1 element means that it repeats
1806 return ( $list_ref->[0], $list_ref->[0] );
1809 # All 1 bits is the largest possible UV.
1810 $Unicode::UCD::MAX_CP = ~0;
1814 =head2 B<prop_invlist()>
1816 C<prop_invlist> returns an inversion list (described below) that defines all the
1817 code points for the binary Unicode property (or "property=value" pair) given
1818 by the input parameter string:
1821 use Unicode::UCD 'prop_invlist';
1822 say join ", ", prop_invlist("Any");
1827 An empty list is returned if the input is unknown; the number of elements in
1828 the list is returned if called in scalar context.
1830 L<perluniprops|perluniprops/Properties accessible through \p{} and \P{}> gives
1831 the list of properties that this function accepts, as well as all the possible
1832 forms for them (including with the optional "Is_" prefixes). (Except this
1833 function doesn't accept any Perl-internal properties, some of which are listed
1834 there.) This function uses the same loose or tighter matching rules for
1835 resolving the input property's name as is done for regular expressions. These
1836 are also specified in L<perluniprops|perluniprops/Properties accessible
1837 through \p{} and \P{}>. Examples of using the "property=value" form are:
1839 say join ", ", prop_invlist("Script=Shavian");
1844 say join ", ", prop_invlist("ASCII_Hex_Digit=No");
1847 0, 48, 58, 65, 71, 97, 103
1849 say join ", ", prop_invlist("ASCII_Hex_Digit=Yes");
1852 48, 58, 65, 71, 97, 103
1854 Inversion lists are a compact way of specifying Unicode property-value
1855 definitions. The 0th item in the list is the lowest code point that has the
1856 property-value. The next item (item [1]) is the lowest code point beyond that
1857 one that does NOT have the property-value. And the next item beyond that
1858 ([2]) is the lowest code point beyond that one that does have the
1859 property-value, and so on. Put another way, each element in the list gives
1860 the beginning of a range that has the property-value (for even numbered
1861 elements), or doesn't have the property-value (for odd numbered elements).
1862 The name for this data structure stems from the fact that each element in the
1863 list toggles (or inverts) whether the corresponding range is or isn't on the
1866 In the final example above, the first ASCII Hex digit is code point 48, the
1867 character "0", and all code points from it through 57 (a "9") are ASCII hex
1868 digits. Code points 58 through 64 aren't, but 65 (an "A") through 70 (an "F")
1869 are, as are 97 ("a") through 102 ("f"). 103 starts a range of code points
1870 that aren't ASCII hex digits. That range extends to infinity, which on your
1871 computer can be found in the variable C<$Unicode::UCD::MAX_CP>. (This
1872 variable is as close to infinity as Perl can get on your platform, and may be
1873 too high for some operations to work; you may wish to use a smaller number for
1876 Note that the inversion lists returned by this function can possibly include
1877 non-Unicode code points, that is anything above 0x10FFFF. This is in
1878 contrast to Perl regular expression matches on those code points, in which a
1879 non-Unicode code point always fails to match. For example, both of these have
1882 chr(0x110000) =~ \p{ASCII_Hex_Digit=True} # Fails.
1883 chr(0x110000) =~ \p{ASCII_Hex_Digit=False} # Fails!
1885 And both raise a warning that a Unicode property is being used on a
1886 non-Unicode code point. It is arguable as to which is the correct thing to do
1887 here. This function has chosen the way opposite to the Perl regular
1888 expression behavior. This allows you to easily flip to to the Perl regular
1889 expression way (for you to go in the other direction would be far harder).
1890 Simply add 0x110000 at the end of the non-empty returned list if it isn't
1891 already that value; and pop that value if it is; like:
1893 my @list = prop_invlist("foo");
1895 if ($list[-1] == 0x110000) {
1896 pop @list; # Defeat the turning on for above Unicode
1899 push @list, 0x110000; # Turn off for above Unicode
1903 It is a simple matter to expand out an inversion list to a full list of all
1904 code points that have the property-value:
1906 my @invlist = prop_invlist($property_name);
1907 die "empty" unless @invlist;
1909 for (my $i = 0; $i < @invlist; $i += 2) {
1910 my $upper = ($i + 1) < @invlist
1911 ? $invlist[$i+1] - 1 # In range
1912 : $Unicode::UCD::MAX_CP; # To infinity. You may want
1913 # to stop much much earlier;
1914 # going this high may expose
1915 # perl deficiencies with very
1917 for my $j ($invlist[$i] .. $upper) {
1918 push @full_list, $j;
1922 C<prop_invlist> does not know about any user-defined nor Perl internal-only
1923 properties, and will return C<undef> if called with one of those.
1927 # User-defined properties could be handled with some changes to utf8_heavy.pl;
1928 # and implementing here of dealing with EXTRAS. If done, consideration should
1929 # be given to the fact that the user subroutine could return different results
1930 # with each call; security issues need to be thought about.
1932 # These are created by mktables for this routine and stored in unicore/UCD.pl
1933 # where their structures are described.
1934 our %loose_defaults;
1935 our $MAX_UNICODE_CODEPOINT;
1937 sub prop_invlist ($) {
1939 return if ! defined $prop;
1941 require "utf8_heavy.pl";
1943 # Warnings for these are only for regexes, so not applicable to us
1944 no warnings 'deprecated';
1946 # Get the swash definition of the property-value.
1947 my $swash = utf8::SWASHNEW(__PACKAGE__, $prop, undef, 1, 0);
1949 # Fail if not found, or isn't a boolean property-value, or is a
1950 # user-defined property, or is internal-only.
1953 || $swash->{'BITS'} != 1
1954 || $swash->{'USER_DEFINED'}
1955 || $prop =~ /^\s*_/;
1957 if ($swash->{'EXTRAS'}) {
1958 carp __PACKAGE__, "::prop_invlist: swash returned for $prop unexpectedly has EXTRAS magic";
1961 if ($swash->{'SPECIALS'}) {
1962 carp __PACKAGE__, "::prop_invlist: swash returned for $prop unexpectedly has SPECIALS magic";
1968 # The input lines look like:
1972 # Split into lines, stripped of trailing comments
1973 foreach my $range (split "\n",
1974 $swash->{'LIST'} =~ s/ \s* (?: \# .* )? $ //xmgr)
1976 # And find the beginning and end of the range on the line
1977 my ($hex_begin, $hex_end) = split "\t", $range;
1978 my $begin = hex $hex_begin;
1980 # If the new range merely extends the old, we remove the marker
1981 # created the last time through the loop for the old's end, which
1982 # causes the new one's end to be used instead.
1983 if (@invlist && $begin == $invlist[-1]) {
1987 # Add the beginning of the range
1988 push @invlist, $begin;
1991 if (defined $hex_end) { # The next item starts with the code point 1
1992 # beyond the end of the range.
1993 push @invlist, hex($hex_end) + 1;
1995 else { # No end of range, is a single code point.
1996 push @invlist, $begin + 1;
2000 require "unicore/UCD.pl";
2001 my $FIRST_NON_UNICODE = $MAX_UNICODE_CODEPOINT + 1;
2003 # Could need to be inverted: add or subtract a 0 at the beginning of the
2004 # list. And to keep it from matching non-Unicode, add or subtract the
2005 # first non-unicode code point.
2006 if ($swash->{'INVERT_IT'}) {
2007 if (@invlist && $invlist[0] == 0) {
2011 unshift @invlist, 0;
2013 if (@invlist && $invlist[-1] == $FIRST_NON_UNICODE) {
2017 push @invlist, $FIRST_NON_UNICODE;
2021 # Here, the list is set up to include only Unicode code points. But, if
2022 # the table is the default one for the property, it should contain all
2023 # non-Unicode code points. First calculate the loose name for the
2024 # property. This is done even for strict-name properties, as the data
2025 # structure that mktables generates for us is set up so that we don't have
2026 # to worry about that. The property-value needs to be split if compound,
2027 # as the loose rules need to be independently calculated on each part. We
2028 # know that it is syntactically valid, or SWASHNEW would have failed.
2031 my ($prop_only, $table) = split /\s*[:=]\s*/, $prop;
2034 # May have optional prefixed 'is'
2035 $prop = utf8::_loose_name($prop_only) =~ s/^is//r;
2036 $prop = $utf8::loose_property_name_of{$prop};
2037 $prop .= "=" . utf8::_loose_name($table);
2040 $prop = utf8::_loose_name($prop);
2042 if (exists $loose_defaults{$prop}) {
2044 # Here, is the default table. If a range ended with 10ffff, instead
2045 # continue that range to infinity, by popping the 110000; otherwise,
2046 # add the range from 11000 to infinity
2047 if (! @invlist || $invlist[-1] != $FIRST_NON_UNICODE) {
2048 push @invlist, $FIRST_NON_UNICODE;
2058 sub _search_invlist {
2059 # Find the range in the inversion list which contains a code point; that
2060 # is, find i such that l[i] <= code_point < l[i+1]
2062 # If this is ever made public, could use to speed up .t specials. Would
2063 # need to use code point argument, as in other functions in this pm
2065 my $list_ref = shift;
2066 my $code_point = shift;
2067 # Verify non-neg numeric XXX
2069 my $max_element = @$list_ref - 1;
2070 return if ! $max_element < 0; # Undef if list is empty.
2072 # Short cut something at the far-end of the table. This also allows us to
2073 # refer to element [$i+1] without fear of being out-of-bounds in the loop
2075 return $max_element if $code_point >= $list_ref->[$max_element];
2077 use integer; # want integer division
2079 my $i = $max_element / 2;
2082 my $upper = $max_element;
2085 if ($code_point >= $list_ref->[$i]) {
2087 # Here we have met the lower constraint. We can quit if we
2088 # also meet the upper one.
2089 last if $code_point < $list_ref->[$i+1];
2091 $lower = $i; # Still too low.
2096 # Here, $code_point < $list_ref[$i], so look lower down.
2100 # Split search domain in half to try again.
2101 my $temp = ($upper + $lower) / 2;
2103 # No point in continuing unless $i changes for next time
2105 return $i if $temp == $i;
2107 } # End of while loop
2109 # Here we have found the offset
2115 =head2 B<prop_invmap()>
2117 use Unicode::UCD 'prop_invmap';
2118 my ($list_ref, $map_ref, $format, $missing)
2119 = prop_invmap("General Category");
2121 C<prop_invmap> is used to get the complete mapping definition for a property,
2122 in the form of an inversion map. An inversion map consists of two parallel
2123 arrays. One is an ordered list of code points that mark range beginnings, and
2124 the other gives the value (or mapping) that all code points in the
2125 corresponding range have.
2127 C<prop_invmap> is called with the name of the desired property. The name is
2128 loosely matched, meaning that differences in case, white-space, hyphens, and
2129 underscores are not meaningful (except for the trailing underscore in the
2130 old-form grandfathered-in property C<"L_">, which is better written as C<"LC">,
2131 or even better, C<"Gc=LC">).
2133 Many Unicode properties have more than one name (or alias). C<prop_invmap>
2134 understands all of these, including Perl extensions to them. Ambiguities are
2135 resolved as described above for L</prop_aliases()>. The Perl internal
2136 property "Perl_Decimal_Digit, described below, is also accepted. C<undef> is
2137 returned if the property name is unknown.
2138 See L<perluniprops/Properties accessible through Unicode::UCD> for the
2139 properties acceptable as inputs to this function.
2141 It is a fatal error to call this function except in list context.
2143 In addition to the the two arrays that form the inversion map, C<prop_invmap>
2144 returns two other values; one is a scalar that gives some details as to the
2145 format of the entries of the map array; the other is used for specialized
2146 purposes, described at the end of this section.
2148 This means that C<prop_invmap> returns a 4 element list. For example,
2150 my ($blocks_ranges_ref, $blocks_maps_ref, $format, $default)
2151 = prop_invmap("Block");
2153 In this call, the two arrays will be populated as shown below (for Unicode
2156 Index @blocks_ranges @blocks_maps
2157 0 0x0000 Basic Latin
2158 1 0x0080 Latin-1 Supplement
2159 2 0x0100 Latin Extended-A
2160 3 0x0180 Latin Extended-B
2161 4 0x0250 IPA Extensions
2162 5 0x02B0 Spacing Modifier Letters
2163 6 0x0300 Combining Diacritical Marks
2164 7 0x0370 Greek and Coptic
2167 233 0x2B820 No_Block
2168 234 0x2F800 CJK Compatibility Ideographs Supplement
2169 235 0x2FA20 No_Block
2171 237 0xE0080 No_Block
2172 238 0xE0100 Variation Selectors Supplement
2173 239 0xE01F0 No_Block
2174 240 0xF0000 Supplementary Private Use Area-A
2175 241 0x100000 Supplementary Private Use Area-B
2176 242 0x110000 No_Block
2178 The first line (with Index [0]) means that the value for code point 0 is "Basic
2179 Latin". The entry "0x0080" in the @blocks_ranges column in the second line
2180 means that the value from the first line, "Basic Latin", extends to all code
2181 points in the range from 0 up to but not including 0x0080, that is, through
2182 127. In other words, the code points from 0 to 127 are all in the "Basic
2183 Latin" block. Similarly, all code points in the range from 0x0080 up to (but
2184 not including) 0x0100 are in the block named "Latin-1 Supplement", etc.
2185 (Notice that the return is the old-style block names; see L</Old-style versus
2186 new-style block names>).
2188 The final line (with Index [242]) means that the value for all code points above
2189 the legal Unicode maximum code point have the value "No_Block", which is the
2190 term Unicode uses for a non-existing block.
2192 The arrays completely specify the mappings for all possible code points.
2193 The final element in an inversion map returned by this function will always be
2194 for the range that consists of all the code points that aren't legal Unicode,
2195 but that are expressible on the platform. (That is, it starts with code point
2196 0x110000, the first code point above the legal Unicode maximum, and extends to
2197 infinity.) The value for that range will be the same that any typical
2198 unassigned code point has for the specified property. (Certain unassigned
2199 code points are not "typical"; for example the non-character code points, or
2200 those in blocks that are to be written right-to-left. The above-Unicode
2201 range's value is not based on these atypical code points.) It could be argued
2202 that, instead of treating these as unassigned Unicode code points, the value
2203 for this range should be C<undef>. If you wish, you can change the returned
2206 The maps are almost always simple scalars that should be interpreted as-is.
2207 These values are those given in the Unicode-supplied data files, which may be
2208 inconsistent as to capitalization and as to which synonym for a property-value
2209 is given. The results may be normalized by using the L</prop_value_aliases()>
2212 There are exceptions to the simple scalar maps. Some properties have some
2213 elements in their map list that are themselves lists of scalars; and some
2214 special strings are returned that are not to be interpreted as-is. Element
2215 [2] (placed into C<$format> in the example above) of the returned four element
2216 list tells you if the map has any of these special elements or not, as follows:
2222 means all the elements of the map array are simple scalars, with no special
2223 elements. Almost all properties are like this, like the C<block> example
2228 means that some of the map array elements have the form given by C<"s">, and
2229 the rest are lists of scalars. For example, here is a portion of the output
2230 of calling C<prop_invmap>() with the "Script Extensions" property:
2232 @scripts_ranges @scripts_maps
2235 0x0964 [ Bengali, Devanagari, Gurumukhi, Oriya ]
2239 Here, the code points 0x964 and 0x965 are both used in Bengali,
2240 Devanagari, Gurmukhi, and Oriya, but no other scripts.
2242 The Name_Alias property is also of this form. But each scalar consists of two
2243 components: 1) the name, and 2) the type of alias this is. They are
2244 separated by a colon and a space. In Unicode 6.1, there are several alias types:
2250 indicates that the name is a corrected form for the
2251 original name (which remains valid) for the same code point.
2255 adds a new name for a control character.
2259 is an alternate name for a character
2263 is a name for a character that has been documented but was never in any
2266 =item C<abbreviation>
2268 is a common abbreviation for a character
2272 The lists are ordered (roughly) so the most preferred names come before less
2277 @aliases_ranges @alias_maps
2279 0x009E [ 'PRIVACY MESSAGE: control', 'PM: abbreviation' ]
2280 0x009F [ 'APPLICATION PROGRAM COMMAND: control',
2283 0x00A0 'NBSP: abbreviation'
2285 0x00AD 'SHY: abbreviation'
2287 0x01A2 'LATIN CAPITAL LETTER GHA: correction'
2288 0x01A3 'LATIN SMALL LETTER GHA: correction'
2292 A map to the empty string means that there is no alias defined for the code
2297 is like C<"s"> in that all the map array elements are scalars, but here they are
2298 restricted to all being integers, and each has to be tweaked to get the correct
2299 result by adding the code point number to it. For example, in:
2301 my ($uppers_ranges_ref, $uppers_maps_ref, $format)
2302 = prop_invmap("Simple_Uppercase_Mapping");
2304 the returned arrays look like this:
2306 @$uppers_ranges_ref @$uppers_maps_ref Note
2308 97 -32 'a' maps to 'A', b => B ...
2310 181 743 MICRO SIGN => Greek Cap MU
2314 The first line means that the uppercase of code point 0 is 0+0; the uppercase
2315 of code point 1 is 1+0; ... of code point 96 is 96+0. In other words, the
2316 uppercase of each of the first 0..96 code points is itself. The second line
2317 means that code point 97 maps to 97-32 (=65) or the uppercase of 'a' is 'A';
2318 98 => 98-32 (=66) or the uppercase of 'b' is 'B'; ... 122 => 122-32 (=90) or
2319 the uppercase of 'z' is 'Z'.
2321 By requiring adding the code point to the returned result, the arrays are made
2322 significantly smaller, which speeds up searching them.
2326 means that some of the map array elements have the form given by C<"c">, and
2327 the rest are ordered lists of code points.
2330 my ($uppers_ranges_ref, $uppers_maps_ref, $format)
2331 = prop_invmap("Uppercase_Mapping");
2333 the returned arrays look like this:
2335 @$uppers_ranges_ref @$uppers_maps_ref
2342 0x0149 [ 0x02BC 0x004E ]
2347 This is the full Uppercase_Mapping property (as opposed to the
2348 Simple_Uppercase_Mapping given in the example for format C<"c">). The only
2349 difference between the two in the ranges shown is that the code point at
2350 0x0149 (LATIN SMALL LETTER N PRECEDED BY APOSTROPHE) maps to a string of two
2351 characters, 0x02BC (MODIFIER LETTER APOSTROPHE) followed by 0x004E (LATIN
2354 Yes, there is an inconsistency here. When the map is a single element the
2355 correct value must be derived by adding the code point number to it; when the
2356 map is a list of code points, they are the final correct values. The reason
2357 for forcing the addition is to make the returned map array significantly more
2358 compact. There is no such advantage to doing the same thing to the elements
2359 that are lists, and the addition is extra work.
2363 This is like C<"c">, but some elements are the empty string, so not all are
2365 The one internal Perl property accessible by C<prop_invmap> is of this type:
2366 "Perl_Decimal_Digit" returns an inversion map which gives the numeric values
2367 that are represented by the Unicode decimal digit characters. Characters that
2368 don't represent decimal digits map to the empty string, like so:
2383 This means that the code points from 0 to 0x2F do not represent decimal digits;
2384 the code point 0x30 (DIGIT ZERO, =48 decimal) represents 48-48 = 0; code
2385 point 0x31, (DIGIT ONE), represents 49-48 = 1; ... code point 0x39, (DIGIT
2386 NINE), represents 57-48 = 9; ... code points 0x3A through 0x65F do not
2387 represent decimal digits; 0x660 (ARABIC-INDIC DIGIT ZERO, =1632 decimal),
2388 represents 1632-1632 = 0; ... 0x07C1 (NKO DIGIT ONE, = 1985), represents
2393 is a combination of the C<"cl"> type and the C<"ce"> type. Some of
2394 the map array elements have the forms given by C<"cl">, and
2395 the rest are the empty string. The property C<NFKC_Casefold> has this form.
2396 An example slice is:
2398 @$ranges_ref @$maps_ref Note
2400 0x00AA -73 FEMININE ORDINAL INDICATOR => 'a'
2402 0x00AD SOFT HYPHEN => ""
2404 0x00AF [ 0x0020, 0x0304 ] MACRON => SPACE . COMBINING MACRON
2410 means that all the elements of the map array are either rational numbers or
2411 the string C<"NaN">, meaning "Not a Number". A rational number is either an
2412 integer, or two integers separated by a solidus (C<"/">). The second integer
2413 represents the denominator of the division implied by the solidus, and is
2414 guaranteed not to be 0. If you want to convert them to scalar numbers, you
2415 can use something like this:
2417 my ($invlist_ref, $invmap_ref, $format) = prop_invmap($property);
2418 if ($format && $format eq "r") {
2419 map { $_ = eval $_ } @$invmap_ref;
2422 Here's some entries from the output of the property "Nv", which has format
2425 @numerics_ranges @numerics_maps Note
2435 0xB2 2 SUPERSCRIPT 2
2436 0xB3 3 SUPERSCRIPT 2
2438 0xB9 1 SUPERSCRIPT 1
2440 0xBC 1/4 VULGAR FRACTION 1/4
2441 0xBD 1/2 VULGAR FRACTION 1/2
2442 0xBE 3/4 VULGAR FRACTION 3/4
2444 0x660 0 ARABIC-INDIC DIGIT ZERO
2448 means the Name property. All the elements of the map array are simple
2449 scalars, but some of them contain special strings that require more work to
2450 get the actual name.
2454 CJK UNIFIED IDEOGRAPH-<code point>
2456 mean that the name for the code point is "CJK UNIFIED IDEOGRAPH-"
2457 with the code point (expressed in hexadecimal) appended to it, like "CJK
2458 UNIFIED IDEOGRAPH-3403" (similarly for S<C<CJK COMPATIBILITY IDEOGRAPH-E<lt>code
2465 means that the name is algorithmically calculated. This is easily done by
2466 the function L<charnames/charnames::viacode(code)>.
2468 Note that for control characters (C<Gc=cc>), Unicode's data files have the
2469 string "C<E<lt>controlE<gt>>", but the real name of each of these characters is the empty
2470 string. This function returns that real name, the empty string. (There are
2471 names for these characters, but they are considered aliases, not the Name
2472 property name, and are contained in the C<Name_Alias> property.)
2476 means the Decomposition_Mapping property. This property is like C<"cl">
2477 properties, except that one of the scalar elements is of the form:
2481 This signifies that this entry should be replaced by the decompositions for
2482 all the code points whose decomposition is algorithmically calculated. (All
2483 of them are currently in one range and likely to remain so; the C<"n"> format
2484 has this same entry.) These can be generated via the function
2485 L<Unicode::Normalize::NFD()|Unicode::Normalize>.
2487 Note that the mapping is the one that is specified in the Unicode data files,
2488 and to get the final decomposition, it may need to be applied recursively.
2492 A binary search can be used to quickly find a code point in the inversion
2493 list, and hence its corresponding mapping.
2495 The final element (index [3], assigned to C<$default> in the "block" example) in
2496 the four element list returned by this function may be useful for applications
2497 that wish to convert the returned inversion map data structure into some
2498 other, such as a hash. It gives the mapping that most code points map to
2499 under the property. If you establish the convention that any code point not
2500 explicitly listed in your data structure maps to this value, you can
2501 potentially make your data structure much smaller. As you construct your data
2502 structure from the one returned by this function, simply ignore those ranges
2503 that map to this value, generally called the "default" value. For example, to
2504 convert to the data structure searchable by L</charinrange()>, you can follow
2507 my ($list_ref, $map_ref, $format, $missing) = prop_invmap($property);
2509 for my $i (0 .. @$list_ref - 2) {
2510 next if $map_ref->[$i] eq $missing;
2511 push @range_list, [ $list_ref->[$i],
2517 print charinrange(\@range_list, $code_point), "\n";
2520 With this, C<charinrange()> will return C<undef> if its input code point maps
2521 to C<$missing>. You can avoid this by omitting the C<next> statement, and adding
2522 a line after the loop to handle the final element of the inversion map.
2525 Note that the inversion maps returned for the C<Case_Folding> and
2526 C<Simple_Case_Folding> properties do not include the Turkic-locale mappings.
2527 Use L</casefold()> for these.
2529 C<prop_invmap> does not know about any user-defined properties, and will
2530 return C<undef> if called with one of those.
2534 # User-defined properties could be handled with some changes to utf8_heavy.pl;
2535 # if done, consideration should be given to the fact that the user subroutine
2536 # could return different results with each call, which could lead to some
2539 # One could store things in memory so they don't have to be recalculated, but
2540 # it is unlikely this will be called often, and some properties would take up
2541 # significant memory.
2543 # These are created by mktables for this routine and stored in unicore/UCD.pl
2544 # where their structures are described.
2545 our @algorithmic_named_code_points;
2549 sub prop_invmap ($) {
2551 croak __PACKAGE__, "::prop_invmap: must be called in list context" unless wantarray;
2554 return unless defined $prop;
2556 # Fail internal properties
2557 return if $prop =~ /^_/;
2559 # The values returned by this function.
2560 my (@invlist, @invmap, $format, $missing);
2562 # The swash has two components we look at, the base list, and a hash,
2563 # named 'SPECIALS', containing any additional members whose mappings don't
2564 # fit into the the base list scheme of things. These generally 'override'
2565 # any value in the base list for the same code point.
2568 require "utf8_heavy.pl";
2569 require "unicore/UCD.pl";
2573 # If there are multiple entries for a single code point
2574 my $has_multiples = 0;
2576 # Try to get the map swash for the property. They have 'To' prepended to
2577 # the property name, and 32 means we will accept 32 bit return values.
2578 # The 0 means we aren't calling this from tr///.
2579 my $swash = utf8::SWASHNEW(__PACKAGE__, "To$prop", undef, 32, 0);
2581 # If didn't find it, could be because needs a proxy. And if was the
2582 # 'Block' or 'Name' property, use a proxy even if did find it. Finding it
2583 # in these cases would be the result of the installation changing mktables
2584 # to output the Block or Name tables. The Block table gives block names
2585 # in the new-style, and this routine is supposed to return old-style block
2586 # names. The Name table is valid, but we need to execute the special code
2587 # below to add in the algorithmic-defined name entries.
2588 # And NFKCCF needs conversion, so handle that here too.
2589 if (ref $swash eq ""
2590 || $swash->{'TYPE'} =~ / ^ To (?: Blk | Na | NFKCCF ) $ /x)
2593 # Get the short name of the input property, in standard form
2594 my ($second_try) = prop_aliases($prop);
2595 return unless $second_try;
2596 $second_try = utf8::_loose_name(lc $second_try);
2598 if ($second_try eq "in") {
2600 # This property is identical to age for inversion map purposes
2604 elsif ($second_try =~ / ^ s ( cf | [ltu] c ) $ /x) {
2606 # These properties use just the LIST part of the full mapping,
2607 # which includes the simple maps that are otherwise overridden by
2608 # the SPECIALS. So all we need do is to not look at the SPECIALS;
2609 # set $overrides to indicate that
2612 # The full name is the simple name stripped of its initial 's'
2613 $prop = $second_try =~ s/^s//r;
2616 elsif ($second_try eq "blk") {
2618 # We use the old block names. Just create a fake swash from its
2622 $blocks{'LIST'} = "";
2623 $blocks{'TYPE'} = "ToBlk";
2624 $utf8::SwashInfo{ToBlk}{'missing'} = "No_Block";
2625 $utf8::SwashInfo{ToBlk}{'format'} = "s";
2627 foreach my $block (@BLOCKS) {
2628 $blocks{'LIST'} .= sprintf "%x\t%x\t%s\n",
2635 elsif ($second_try eq "na") {
2637 # Use the combo file that has all the Name-type properties in it,
2638 # extracting just the ones that are for the actual 'Name'
2639 # property. And create a fake swash from it.
2641 $names{'LIST'} = "";
2642 my $original = do "unicore/Name.pl";
2643 my $algorithm_names = \@algorithmic_named_code_points;
2645 # We need to remove the names from it that are aliases. For that
2646 # we need to also read in that table. Create a hash with the keys
2647 # being the code points, and the values being a list of the
2648 # aliases for the code point key.
2649 my ($aliases_code_points, $aliases_maps, undef, undef) =
2650 &prop_invmap('Name_Alias');
2652 for (my $i = 0; $i < @$aliases_code_points; $i++) {
2653 my $code_point = $aliases_code_points->[$i];
2654 $aliases{$code_point} = $aliases_maps->[$i];
2656 # If not already a list, make it into one, so that later we
2657 # can treat things uniformly
2658 if (! ref $aliases{$code_point}) {
2659 $aliases{$code_point} = [ $aliases{$code_point} ];
2662 # Remove the alias type from the entry, retaining just the
2664 map { s/:.*// } @{$aliases{$code_point}};
2668 foreach my $line (split "\n", $original) {
2669 my ($hex_code_point, $name) = split "\t", $line;
2671 # Weeds out all comments, blank lines, and named sequences
2672 next if $hex_code_point =~ /\P{ASCII_HEX_DIGIT}/;
2674 my $code_point = hex $hex_code_point;
2676 # The name of all controls is the default: the empty string.
2677 # The set of controls is immutable, so these hard-coded
2679 next if $code_point <= 0x9F
2680 && ($code_point <= 0x1F || $code_point >= 0x7F);
2682 # If this is a name_alias, it isn't a name
2683 next if grep { $_ eq $name } @{$aliases{$code_point}};
2685 # If we are beyond where one of the special lines needs to
2687 while ($i < @$algorithm_names
2688 && $code_point > $algorithm_names->[$i]->{'low'})
2691 # ... then insert it, ahead of what we were about to
2693 $names{'LIST'} .= sprintf "%x\t%x\t%s\n",
2694 $algorithm_names->[$i]->{'low'},
2695 $algorithm_names->[$i]->{'high'},
2696 $algorithm_names->[$i]->{'name'};
2698 # Done with this range.
2701 # We loop until all special lines that precede the next
2702 # regular one are output.
2705 # Here, is a normal name.
2706 $names{'LIST'} .= sprintf "%x\t\t%s\n", $code_point, $name;
2707 } # End of loop through all the names
2709 $names{'TYPE'} = "ToNa";
2710 $utf8::SwashInfo{ToNa}{'missing'} = "";
2711 $utf8::SwashInfo{ToNa}{'format'} = "n";
2714 elsif ($second_try =~ / ^ ( d [mt] ) $ /x) {
2716 # The file is a combination of dt and dm properties. Create a
2717 # fake swash from the portion that we want.
2718 my $original = do "unicore/Decomposition.pl";
2721 if ($second_try eq 'dt') {
2722 $decomps{'TYPE'} = "ToDt";
2723 $utf8::SwashInfo{'ToDt'}{'missing'} = "None";
2724 $utf8::SwashInfo{'ToDt'}{'format'} = "s";
2727 $decomps{'TYPE'} = "ToDm";
2728 $utf8::SwashInfo{'ToDm'}{'missing'} = "0";
2729 $utf8::SwashInfo{'ToDm'}{'format'} = 'i';
2731 # Use a special internal-to-this_routine format, 'dm', to
2732 # distinguish from 'd', meaning decimal.
2733 $utf8::SwashInfo{'ToDm'}{'format'} = "dm";
2736 $decomps{'LIST'} = "";
2738 # This property has one special range not in the file: for the
2740 my $done_hangul = 0; # Have we done the hangul range.
2741 foreach my $line (split "\n", $original) {
2742 my ($hex_lower, $hex_upper, $type_and_map) = split "\t", $line;
2743 my $code_point = hex $hex_lower;
2747 # The type, enclosed in <...>, precedes the mapping separated
2749 if ($type_and_map =~ / ^ < ( .* ) > \s+ (.*) $ /x) {
2750 $value = ($second_try eq 'dt') ? $1 : $2
2752 else { # If there is no type specified, it's canonical
2753 $value = ($second_try eq 'dt')
2757 if ($second_try eq 'dm') {
2758 my @map = map { hex } split " ", $value;
2762 # Single character maps are converted to deltas, as
2763 # this file is stored, for backwards compatibility,
2765 $value = $map[0] - $code_point;
2767 # If this is a multi-char range, process the rest of
2768 # it by doing a 'redo' after this line is done. Fix
2769 # up the line to contain the rest of the range for
2771 if ($hex_upper ne "" && hex $hex_upper != $code_point) {
2772 $line = sprintf("%04X\t%s\t%s",
2778 # Pretend that this is a single element range.
2779 $hex_upper = $hex_lower;
2783 $value = join " ", @map;
2787 # Insert the hangul range at the appropriate spot.
2788 if (! $done_hangul && $code_point > $HANGUL_BEGIN) {
2791 sprintf "%x\t%x\t%s\n",
2793 $HANGUL_BEGIN + $HANGUL_COUNT - 1,
2794 ($second_try eq 'dt')
2796 : "<hangul syllable>";
2799 # And append this to our constructed LIST.
2800 $decomps{'LIST'} .= "$hex_lower\t$hex_upper\t$value\n";
2806 elsif ($second_try eq 'nfkccf') {
2808 # This property is stored in the old format for backwards
2809 # compatibility for any applications that read its file directly.
2810 # So here we convert it to delta format for compatibility with the
2811 # other properties similar to it.
2814 # Create a new LIST with deltas instead of code points.
2816 foreach my $range (split "\n", $swash->{'LIST'}) {
2817 my ($hex_begin, $hex_end, $map) = split "\t", $range;
2818 my $begin = hex $hex_begin;
2819 my $end = (defined $hex_end && $hex_end ne "")
2822 my $decimal_map = hex $map;
2823 foreach my $code_point ($begin .. $end) {
2824 $list .= sprintf("%04X\t\t%d\n", $code_point, $decimal_map - $code_point);
2828 $nfkccf{'LIST'} = $list;
2829 $nfkccf{'TYPE'} = "ToNFKCCF";
2830 $nfkccf{'SPECIALS'} = $swash->{'SPECIALS'};
2832 $utf8::SwashInfo{'ToNFKCCF'}{'missing'} = 0;
2833 $utf8::SwashInfo{'ToNFKCCF'}{'format'} = 'i';
2835 else { # Don't know this property. Fail.
2840 if ($swash->{'EXTRAS'}) {
2841 carp __PACKAGE__, "::prop_invmap: swash returned for $prop unexpectedly has EXTRAS magic";
2845 # Here, have a valid swash return. Examine it.
2846 my $returned_prop = $swash->{'TYPE'};
2848 # All properties but binary ones should have 'missing' and 'format'
2850 $missing = $utf8::SwashInfo{$returned_prop}{'missing'};
2851 $missing = 'N' unless defined $missing;
2853 $format = $utf8::SwashInfo{$returned_prop}{'format'};
2854 $format = 'b' unless defined $format;
2856 # The LIST input lines look like:
2859 # 0375\t0377\tGreek # [3]
2860 # 037A\t037D\tGreek # [4]
2865 # Convert them to like
2874 # For binary properties, the final non-comment column is absent, and
2875 # assumed to be 'Y'.
2877 foreach my $range (split "\n", $swash->{'LIST'}) {
2878 $range =~ s/ \s* (?: \# .* )? $ //xg; # rmv trailing space, comments
2880 # Find the beginning and end of the range on the line
2881 my ($hex_begin, $hex_end, $map) = split "\t", $range;
2882 my $begin = hex $hex_begin;
2883 my $end = (defined $hex_end && $hex_end ne "")
2887 # Each time through the loop (after the first):
2888 # $invlist[-2] contains the beginning of the previous range processed
2889 # $invlist[-1] contains the end+1 of the previous range processed
2890 # $invmap[-2] contains the value of the previous range processed
2891 # $invmap[-1] contains the default value for missing ranges ($missing)
2893 # Thus, things are set up for the typical case of a new non-adjacent
2894 # range of non-missings to be added. But, if the new range is
2895 # adjacent, it needs to replace the [-1] element; and if the new
2896 # range is a multiple value of the previous one, it needs to be added
2897 # to the [-2] map element.
2899 # The first time through, everything will be empty. If the property
2900 # doesn't have a range that begins at 0, add one that maps to $missing
2904 push @invmap, $missing;
2907 elsif (@invlist > 1 && $invlist[-2] == $begin) {
2909 # Here we handle the case where the input has multiple entries for
2910 # each code point. mktables should have made sure that each such
2911 # range contains only one code point. At this point, $invlist[-1]
2912 # is the $missing that was added at the end of the last loop
2913 # iteration, and [-2] is the last real input code point, and that
2914 # code point is the same as the one we are adding now, making the
2915 # new one a multiple entry. Add it to the existing entry, either
2916 # by pushing it to the existing list of multiple entries, or
2917 # converting the single current entry into a list with both on it.
2918 # This is all we need do for this iteration.
2920 if ($end != $begin) {
2921 croak __PACKAGE__, "Multiple maps per code point in '$prop' require single-element ranges: begin=$begin, end=$end, map=$map";
2923 if (! ref $invmap[-2]) {
2924 $invmap[-2] = [ $invmap[-2], $map ];
2927 push @{$invmap[-2]}, $map;
2932 elsif ($invlist[-1] == $begin) {
2934 # If the input isn't in the most compact form, so that there are
2935 # two adjacent ranges that map to the same thing, they should be
2936 # combined. This happens in our constructed dt mapping, as
2937 # Element [-2] is the map for the latest range so far processed.
2938 # Just set the beginning point of the map to $missing (in
2939 # invlist[-1]) to 1 beyond where this range ends. For example, in
2942 # we have set it up so that it looks like
2946 # We now see that it should be
2949 if (@invlist > 1 && ( (defined $map)
2950 ? $invmap[-2] eq $map
2951 : $invmap[-2] eq 'Y'))
2953 $invlist[-1] = $end + 1;
2957 # Here, the range started in the previous iteration that maps to
2958 # $missing starts at the same code point as this range. That
2959 # means there is no gap to fill that that range was intended for,
2960 # so we just pop it off the parallel arrays.
2965 # Add the range beginning, and the range's map.
2966 push @invlist, $begin;
2967 if ($format eq 'dm') {
2969 # The decomposition maps are either a line like <hangul syllable>
2970 # which are to be taken as is; or a sequence of code points in hex
2971 # and separated by blanks. Convert them to decimal, and if there
2972 # is more than one, use an anonymous array as the map.
2973 if ($map =~ /^ < /x) {
2977 my @map = split " ", $map;
2979 push @invmap, $map[0];
2982 push @invmap, \@map;
2988 # Otherwise, convert hex formatted list entries to decimal; add a
2989 # 'Y' map for the missing value in binary properties, or
2990 # otherwise, use the input map unchanged.
2991 $map = ($format eq 'x')
2999 # We just started a range. It ends with $end. The gap between it and
3000 # the next element in the list must be filled with a range that maps
3001 # to the default value. If there is no gap, the next iteration will
3002 # pop this, unless there is no next iteration, and we have filled all
3003 # of the Unicode code space, so check for that and skip.
3004 if ($end < $MAX_UNICODE_CODEPOINT) {
3005 push @invlist, $end + 1;
3006 push @invmap, $missing;
3010 # If the property is empty, make all code points use the value for missing
3014 push @invmap, $missing;
3017 # And add in standard element that all non-Unicode code points map to:
3019 push @invlist, $MAX_UNICODE_CODEPOINT + 1;
3020 push @invmap, $missing;
3022 # The second component of the map are those values that require
3023 # non-standard specification, stored in SPECIALS. These override any
3024 # duplicate code points in LIST. If we are using a proxy, we may have
3025 # already set $overrides based on the proxy.
3026 $overrides = $swash->{'SPECIALS'} unless defined $overrides;
3029 # A negative $overrides implies that the SPECIALS should be ignored,
3030 # and a simple 'c' list is the value.
3031 if ($overrides < 0) {
3036 # Currently, all overrides are for properties that normally map to
3037 # single code points, but now some will map to lists of code
3038 # points (but there is an exception case handled below).
3041 # Look through the overrides.
3042 foreach my $cp_maybe_utf8 (keys %$overrides) {
3046 # If the overrides came from SPECIALS, the code point keys are
3048 if ($overrides == $swash->{'SPECIALS'}) {
3049 $cp = unpack("C0U", $cp_maybe_utf8);
3050 @map = unpack "U0U*", $swash->{'SPECIALS'}{$cp_maybe_utf8};
3052 # The empty string will show up unpacked as an empty
3054 $format = 'cle' if @map == 0;
3058 # But if we generated the overrides, we didn't bother to
3059 # pack them, and we, so far, do this only for properties
3060 # that are 'c' ones.
3061 $cp = $cp_maybe_utf8;
3062 @map = hex $overrides->{$cp};
3066 # Find the range that the override applies to.
3067 my $i = _search_invlist(\@invlist, $cp);
3068 if ($cp < $invlist[$i] || $cp >= $invlist[$i + 1]) {
3069 croak __PACKAGE__, "wrong_range, cp=$cp; i=$i, current=$invlist[$i]; next=$invlist[$i + 1]"
3072 # And what that range currently maps to
3073 my $cur_map = $invmap[$i];
3075 # If there is a gap between the next range and the code point
3076 # we are overriding, we have to add elements to both arrays to
3077 # fill that gap, using the map that applies to it, which is
3078 # $cur_map, since it is part of the current range.
3079 if ($invlist[$i + 1] > $cp + 1) {
3081 #say "Before splice:";
3082 #say 'i-2=[', $i-2, ']', sprintf("%04X maps to %s", $invlist[$i-2], $invmap[$i-2]) if $i >= 2;
3083 #say 'i-1=[', $i-1, ']', sprintf("%04X maps to %s", $invlist[$i-1], $invmap[$i-1]) if $i >= 1;
3084 #say 'i =[', $i, ']', sprintf("%04X maps to %s", $invlist[$i], $invmap[$i]);
3085 #say 'i+1=[', $i+1, ']', sprintf("%04X maps to %s", $invlist[$i+1], $invmap[$i+1]) if $i < @invlist + 1;
3086 #say 'i+2=[', $i+2, ']', sprintf("%04X maps to %s", $invlist[$i+2], $invmap[$i+2]) if $i < @invlist + 2;
3088 splice @invlist, $i + 1, 0, $cp + 1;
3089 splice @invmap, $i + 1, 0, $cur_map;
3091 #say "After splice:";
3092 #say 'i-2=[', $i-2, ']', sprintf("%04X maps to %s", $invlist[$i-2], $invmap[$i-2]) if $i >= 2;
3093 #say 'i-1=[', $i-1, ']', sprintf("%04X maps to %s", $invlist[$i-1], $invmap[$i-1]) if $i >= 1;
3094 #say 'i =[', $i, ']', sprintf("%04X maps to %s", $invlist[$i], $invmap[$i]);
3095 #say 'i+1=[', $i+1, ']', sprintf("%04X maps to %s", $invlist[$i+1], $invmap[$i+1]) if $i < @invlist + 1;
3096 #say 'i+2=[', $i+2, ']', sprintf("%04X maps to %s", $invlist[$i+2], $invmap[$i+2]) if $i < @invlist + 2;
3099 # If the remaining portion of the range is multiple code
3100 # points (ending with the one we are replacing, guaranteed by
3101 # the earlier splice). We must split it into two
3102 if ($invlist[$i] < $cp) {
3103 $i++; # Compensate for the new element
3106 #say "Before splice:";
3107 #say 'i-2=[', $i-2, ']', sprintf("%04X maps to %s", $invlist[$i-2], $invmap[$i-2]) if $i >= 2;
3108 #say 'i-1=[', $i-1, ']', sprintf("%04X maps to %s", $invlist[$i-1], $invmap[$i-1]) if $i >= 1;
3109 #say 'i =[', $i, ']', sprintf("%04X maps to %s", $invlist[$i], $invmap[$i]);
3110 #say 'i+1=[', $i+1, ']', sprintf("%04X maps to %s", $invlist[$i+1], $invmap[$i+1]) if $i < @invlist + 1;
3111 #say 'i+2=[', $i+2, ']', sprintf("%04X maps to %s", $invlist[$i+2], $invmap[$i+2]) if $i < @invlist + 2;
3113 splice @invlist, $i, 0, $cp;
3114 splice @invmap, $i, 0, 'dummy';
3116 #say "After splice:";
3117 #say 'i-2=[', $i-2, ']', sprintf("%04X maps to %s", $invlist[$i-2], $invmap[$i-2]) if $i >= 2;
3118 #say 'i-1=[', $i-1, ']', sprintf("%04X maps to %s", $invlist[$i-1], $invmap[$i-1]) if $i >= 1;
3119 #say 'i =[', $i, ']', sprintf("%04X maps to %s", $invlist[$i], $invmap[$i]);
3120 #say 'i+1=[', $i+1, ']', sprintf("%04X maps to %s", $invlist[$i+1], $invmap[$i+1]) if $i < @invlist + 1;
3121 #say 'i+2=[', $i+2, ']', sprintf("%04X maps to %s", $invlist[$i+2], $invmap[$i+2]) if $i < @invlist + 2;
3124 # Here, the range we are overriding contains a single code
3125 # point. The result could be the empty string, a single
3126 # value, or a list. If the last case, we use an anonymous
3128 $invmap[$i] = (scalar @map == 0)
3136 elsif ($format eq 'x') {
3138 # All hex-valued properties are really to code points, and have been
3139 # converted to decimal.
3142 elsif ($format eq 'dm') {
3145 elsif ($format eq 'sw') { # blank-separated elements to form a list.
3146 map { $_ = [ split " ", $_ ] if $_ =~ / / } @invmap;
3149 elsif ($returned_prop eq 'ToNameAlias') {
3151 # This property currently doesn't have any lists, but theoretically
3155 elsif ($returned_prop eq 'ToPerlDecimalDigit') {
3158 elsif ($format ne 'n' && $format ne 'r') {
3160 # All others are simple scalars
3163 if ($has_multiples && $format !~ /l/) {
3164 croak __PACKAGE__, "Wrong format '$format' for prop_invmap('$prop'); should indicate has lists";
3167 return (\@invlist, \@invmap, $format, $missing);
3170 =head2 Unicode::UCD::UnicodeVersion
3172 This returns the version of the Unicode Character Database, in other words, the
3173 version of the Unicode standard the database implements. The version is a
3174 string of numbers delimited by dots (C<'.'>).
3180 sub UnicodeVersion {
3181 unless (defined $UNICODEVERSION) {
3182 openunicode(\$VERSIONFH, "version");
3184 chomp($UNICODEVERSION = <$VERSIONFH>);
3186 croak __PACKAGE__, "::VERSION: strange version '$UNICODEVERSION'"
3187 unless $UNICODEVERSION =~ /^\d+(?:\.\d+)+$/;
3189 return $UNICODEVERSION;
3192 =head2 B<Blocks versus Scripts>
3194 The difference between a block and a script is that scripts are closer
3195 to the linguistic notion of a set of code points required to present
3196 languages, while block is more of an artifact of the Unicode code point
3197 numbering and separation into blocks of (mostly) 256 code points.
3199 For example the Latin B<script> is spread over several B<blocks>, such
3200 as C<Basic Latin>, C<Latin 1 Supplement>, C<Latin Extended-A>, and
3201 C<Latin Extended-B>. On the other hand, the Latin script does not
3202 contain all the characters of the C<Basic Latin> block (also known as
3203 ASCII): it includes only the letters, and not, for example, the digits
3206 For blocks see L<http://www.unicode.org/Public/UNIDATA/Blocks.txt>
3208 For scripts see UTR #24: L<http://www.unicode.org/unicode/reports/tr24/>
3210 =head2 B<Matching Scripts and Blocks>
3212 Scripts are matched with the regular-expression construct
3213 C<\p{...}> (e.g. C<\p{Tibetan}> matches characters of the Tibetan script),
3214 while C<\p{Blk=...}> is used for blocks (e.g. C<\p{Blk=Tibetan}> matches
3215 any of the 256 code points in the Tibetan block).
3217 =head2 Old-style versus new-style block names
3219 Unicode publishes the names of blocks in two different styles, though the two
3220 are equivalent under Unicode's loose matching rules.
3222 The original style uses blanks and hyphens in the block names (except for
3223 C<No_Block>), like so:
3225 Miscellaneous Mathematical Symbols-B
3227 The newer style replaces these with underscores, like this:
3229 Miscellaneous_Mathematical_Symbols_B
3231 This newer style is consistent with the values of other Unicode properties.
3232 To preserve backward compatibility, all the functions in Unicode::UCD that
3233 return block names (except one) return the old-style ones. That one function,
3234 L</prop_value_aliases()> can be used to convert from old-style to new-style:
3236 my $new_style = prop_values_aliases("block", $old_style);
3238 Perl also has single-form extensions that refer to blocks, C<In_Cyrillic>,
3239 meaning C<Block=Cyrillic>. These have always been written in the new style.
3241 To convert from new-style to old-style, follow this recipe:
3243 $old_style = charblock((prop_invlist("block=$new_style"))[0]);
3245 (which finds the range of code points in the block using C<prop_invlist>,
3246 gets the lower end of the range (0th element) and then looks up the old name
3247 for its block using C<charblock>).
3249 Note that starting in Unicode 6.1, many of the block names have shorter
3250 synonyms. These are always given in the new style.
3254 Does not yet support EBCDIC platforms.
3258 Jarkko Hietaniemi. Now maintained by perl5 porters.