Integrate mainline
[p5sagit/p5-mst-13.2.git] / pod / perlunicode.pod
CommitLineData
393fec97 1=head1 NAME
2
3perlunicode - Unicode support in Perl
4
5=head1 DESCRIPTION
6
0a1f2d14 7=head2 Important Caveats
21bad921 8
376d9008 9Unicode support is an extensive requirement. While Perl does not
c349b1b9 10implement the Unicode standard or the accompanying technical reports
11from cover to cover, Perl does support many Unicode features.
21bad921 12
13a2d996 13=over 4
21bad921 14
fae2c0fb 15=item Input and Output Layers
21bad921 16
376d9008 17Perl knows when a filehandle uses Perl's internal Unicode encodings
1bfb14c4 18(UTF-8, or UTF-EBCDIC if in EBCDIC) if the filehandle is opened with
19the ":utf8" layer. Other encodings can be converted to Perl's
20encoding on input or from Perl's encoding on output by use of the
21":encoding(...)" layer. See L<open>.
c349b1b9 22
376d9008 23To indicate that Perl source itself is using a particular encoding,
c349b1b9 24see L<encoding>.
21bad921 25
26=item Regular Expressions
27
c349b1b9 28The regular expression compiler produces polymorphic opcodes. That is,
376d9008 29the pattern adapts to the data and automatically switches to the Unicode
30character scheme when presented with Unicode data--or instead uses
31a traditional byte scheme when presented with byte data.
21bad921 32
ad0029c4 33=item C<use utf8> still needed to enable UTF-8/UTF-EBCDIC in scripts
21bad921 34
376d9008 35As a compatibility measure, the C<use utf8> pragma must be explicitly
36included to enable recognition of UTF-8 in the Perl scripts themselves
1bfb14c4 37(in string or regular expression literals, or in identifier names) on
38ASCII-based machines or to recognize UTF-EBCDIC on EBCDIC-based
376d9008 39machines. B<These are the only times when an explicit C<use utf8>
8f8cf39c 40is needed.> See L<utf8>.
21bad921 41
1768d7eb 42You can also use the C<encoding> pragma to change the default encoding
6ec9efec 43of the data in your script; see L<encoding>.
1768d7eb 44
21bad921 45=back
46
376d9008 47=head2 Byte and Character Semantics
393fec97 48
376d9008 49Beginning with version 5.6, Perl uses logically-wide characters to
3e4dbfed 50represent strings internally.
393fec97 51
376d9008 52In future, Perl-level operations will be expected to work with
53characters rather than bytes.
393fec97 54
376d9008 55However, as an interim compatibility measure, Perl aims to
75daf61c 56provide a safe migration path from byte semantics to character
57semantics for programs. For operations where Perl can unambiguously
376d9008 58decide that the input data are characters, Perl switches to
75daf61c 59character semantics. For operations where this determination cannot
60be made without additional information from the user, Perl decides in
376d9008 61favor of compatibility and chooses to use byte semantics.
8cbd9a7a 62
63This behavior preserves compatibility with earlier versions of Perl,
376d9008 64which allowed byte semantics in Perl operations only if
65none of the program's inputs were marked as being as source of Unicode
8cbd9a7a 66character data. Such data may come from filehandles, from calls to
67external programs, from information provided by the system (such as %ENV),
21bad921 68or from literals and constants in the source text.
8cbd9a7a 69
376d9008 70On Windows platforms, if the C<-C> command line switch is used or the
71${^WIDE_SYSTEM_CALLS} global flag is set to C<1>, all system calls
72will use the corresponding wide-character APIs. This feature is
73available only on Windows to conform to the API standard already
1bfb14c4 74established for that platform--and there are very few non-Windows
75platforms that have Unicode-aware APIs.
8cbd9a7a 76
376d9008 77The C<bytes> pragma will always, regardless of platform, force byte
78semantics in a particular lexical scope. See L<bytes>.
8cbd9a7a 79
80The C<utf8> pragma is primarily a compatibility device that enables
75daf61c 81recognition of UTF-(8|EBCDIC) in literals encountered by the parser.
376d9008 82Note that this pragma is only required while Perl defaults to byte
83semantics; when character semantics become the default, this pragma
84may become a no-op. See L<utf8>.
85
86Unless explicitly stated, Perl operators use character semantics
87for Unicode data and byte semantics for non-Unicode data.
88The decision to use character semantics is made transparently. If
89input data comes from a Unicode source--for example, if a character
fae2c0fb 90encoding layer is added to a filehandle or a literal Unicode
376d9008 91string constant appears in a program--character semantics apply.
92Otherwise, byte semantics are in effect. The C<bytes> pragma should
93be used to force byte semantics on Unicode data.
94
95If strings operating under byte semantics and strings with Unicode
96character data are concatenated, the new string will be upgraded to
97I<ISO 8859-1 (Latin-1)>, even if the old Unicode string used EBCDIC.
98This translation is done without regard to the system's native 8-bit
99encoding, so to change this for systems with non-Latin-1 and
100non-EBCDIC native encodings use the C<encoding> pragma. See
101L<encoding>.
7dedd01f 102
feda178f 103Under character semantics, many operations that formerly operated on
376d9008 104bytes now operate on characters. A character in Perl is
feda178f 105logically just a number ranging from 0 to 2**31 or so. Larger
376d9008 106characters may encode into longer sequences of bytes internally, but
107this internal detail is mostly hidden for Perl code.
108See L<perluniintro> for more.
393fec97 109
376d9008 110=head2 Effects of Character Semantics
393fec97 111
112Character semantics have the following effects:
113
114=over 4
115
116=item *
117
376d9008 118Strings--including hash keys--and regular expression patterns may
574c8022 119contain characters that have an ordinal value larger than 255.
393fec97 120
feda178f 121If you use a Unicode editor to edit your program, Unicode characters
122may occur directly within the literal strings in one of the various
376d9008 123Unicode encodings (UTF-8, UTF-EBCDIC, UCS-2, etc.), but will be recognized
124as such and converted to Perl's internal representation only if the
feda178f 125appropriate L<encoding> is specified.
3e4dbfed 126
1bfb14c4 127Unicode characters can also be added to a string by using the
128C<\x{...}> notation. The Unicode code for the desired character, in
376d9008 129hexadecimal, should be placed in the braces. For instance, a smiley
130face is C<\x{263A}>. This encoding scheme only works for characters
131with a code of 0x100 or above.
3e4dbfed 132
133Additionally, if you
574c8022 134
3e4dbfed 135 use charnames ':full';
574c8022 136
1bfb14c4 137you can use the C<\N{...}> notation and put the official Unicode
138character name within the braces, such as C<\N{WHITE SMILING FACE}>.
376d9008 139
393fec97 140
141=item *
142
574c8022 143If an appropriate L<encoding> is specified, identifiers within the
144Perl script may contain Unicode alphanumeric characters, including
376d9008 145ideographs. Perl does not currently attempt to canonicalize variable
146names.
393fec97 147
393fec97 148=item *
149
1bfb14c4 150Regular expressions match characters instead of bytes. "." matches
151a character instead of a byte. The C<\C> pattern is provided to force
152a match a single byte--a C<char> in C, hence C<\C>.
393fec97 153
393fec97 154=item *
155
156Character classes in regular expressions match characters instead of
376d9008 157bytes and match against the character properties specified in the
1bfb14c4 158Unicode properties database. C<\w> can be used to match a Japanese
75daf61c 159ideograph, for instance.
393fec97 160
393fec97 161=item *
162
eb0cc9e3 163Named Unicode properties, scripts, and block ranges may be used like
376d9008 164character classes via the C<\p{}> "matches property" construct and
165the C<\P{}> negation, "doesn't match property".
1bfb14c4 166
167For instance, C<\p{Lu}> matches any character with the Unicode "Lu"
168(Letter, uppercase) property, while C<\p{M}> matches any character
169with an "M" (mark--accents and such) property. Brackets are not
170required for single letter properties, so C<\p{M}> is equivalent to
171C<\pM>. Many predefined properties are available, such as
172C<\p{Mirrored}> and C<\p{Tibetan}>.
4193bef7 173
cfc01aea 174The official Unicode script and block names have spaces and dashes as
376d9008 175separators, but for convenience you can use dashes, spaces, or
1bfb14c4 176underbars, and case is unimportant. It is recommended, however, that
177for consistency you use the following naming: the official Unicode
178script, property, or block name (see below for the additional rules
179that apply to block names) with whitespace and dashes removed, and the
180words "uppercase-first-lowercase-rest". C<Latin-1 Supplement> thus
181becomes C<Latin1Supplement>.
4193bef7 182
376d9008 183You can also use negation in both C<\p{}> and C<\P{}> by introducing a caret
184(^) between the first brace and the property name: C<\p{^Tamil}> is
eb0cc9e3 185equal to C<\P{Tamil}>.
4193bef7 186
eb0cc9e3 187Here are the basic Unicode General Category properties, followed by their
376d9008 188long form. You can use either; C<\p{Lu}> and C<\p{LowercaseLetter}>,
189for instance, are identical.
393fec97 190
d73e5302 191 Short Long
192
193 L Letter
eb0cc9e3 194 Lu UppercaseLetter
195 Ll LowercaseLetter
196 Lt TitlecaseLetter
197 Lm ModifierLetter
198 Lo OtherLetter
d73e5302 199
200 M Mark
eb0cc9e3 201 Mn NonspacingMark
202 Mc SpacingMark
203 Me EnclosingMark
d73e5302 204
205 N Number
eb0cc9e3 206 Nd DecimalNumber
207 Nl LetterNumber
208 No OtherNumber
d73e5302 209
210 P Punctuation
eb0cc9e3 211 Pc ConnectorPunctuation
212 Pd DashPunctuation
213 Ps OpenPunctuation
214 Pe ClosePunctuation
215 Pi InitialPunctuation
d73e5302 216 (may behave like Ps or Pe depending on usage)
eb0cc9e3 217 Pf FinalPunctuation
d73e5302 218 (may behave like Ps or Pe depending on usage)
eb0cc9e3 219 Po OtherPunctuation
d73e5302 220
221 S Symbol
eb0cc9e3 222 Sm MathSymbol
223 Sc CurrencySymbol
224 Sk ModifierSymbol
225 So OtherSymbol
d73e5302 226
227 Z Separator
eb0cc9e3 228 Zs SpaceSeparator
229 Zl LineSeparator
230 Zp ParagraphSeparator
d73e5302 231
232 C Other
e150c829 233 Cc Control
234 Cf Format
eb0cc9e3 235 Cs Surrogate (not usable)
236 Co PrivateUse
e150c829 237 Cn Unassigned
1ac13f9a 238
376d9008 239Single-letter properties match all characters in any of the
3e4dbfed 240two-letter sub-properties starting with the same letter.
376d9008 241C<L&> is a special case, which is an alias for C<Ll>, C<Lu>, and C<Lt>.
32293815 242
eb0cc9e3 243Because Perl hides the need for the user to understand the internal
1bfb14c4 244representation of Unicode characters, there is no need to implement
245the somewhat messy concept of surrogates. C<Cs> is therefore not
eb0cc9e3 246supported.
d73e5302 247
376d9008 248Because scripts differ in their directionality--Hebrew is
249written right to left, for example--Unicode supplies these properties:
32293815 250
eb0cc9e3 251 Property Meaning
92e830a9 252
d73e5302 253 BidiL Left-to-Right
254 BidiLRE Left-to-Right Embedding
255 BidiLRO Left-to-Right Override
256 BidiR Right-to-Left
257 BidiAL Right-to-Left Arabic
258 BidiRLE Right-to-Left Embedding
259 BidiRLO Right-to-Left Override
260 BidiPDF Pop Directional Format
261 BidiEN European Number
262 BidiES European Number Separator
263 BidiET European Number Terminator
264 BidiAN Arabic Number
265 BidiCS Common Number Separator
266 BidiNSM Non-Spacing Mark
267 BidiBN Boundary Neutral
268 BidiB Paragraph Separator
269 BidiS Segment Separator
270 BidiWS Whitespace
271 BidiON Other Neutrals
32293815 272
376d9008 273For example, C<\p{BidiR}> matches characters that are normally
eb0cc9e3 274written right to left.
275
210b36aa 276=back
277
2796c109 278=head2 Scripts
279
376d9008 280The script names which can be used by C<\p{...}> and C<\P{...}>,
281such as in C<\p{Latin}> or C<\p{Cyrillic}>, are as follows:
2796c109 282
1ac13f9a 283 Arabic
e9ad1727 284 Armenian
1ac13f9a 285 Bengali
e9ad1727 286 Bopomofo
1d81abf3 287 Buhid
eb0cc9e3 288 CanadianAboriginal
e9ad1727 289 Cherokee
290 Cyrillic
291 Deseret
292 Devanagari
293 Ethiopic
294 Georgian
295 Gothic
296 Greek
1ac13f9a 297 Gujarati
e9ad1727 298 Gurmukhi
299 Han
300 Hangul
1d81abf3 301 Hanunoo
e9ad1727 302 Hebrew
303 Hiragana
304 Inherited
1ac13f9a 305 Kannada
e9ad1727 306 Katakana
307 Khmer
1ac13f9a 308 Lao
e9ad1727 309 Latin
310 Malayalam
311 Mongolian
1ac13f9a 312 Myanmar
1ac13f9a 313 Ogham
eb0cc9e3 314 OldItalic
e9ad1727 315 Oriya
1ac13f9a 316 Runic
e9ad1727 317 Sinhala
318 Syriac
1d81abf3 319 Tagalog
320 Tagbanwa
e9ad1727 321 Tamil
322 Telugu
323 Thaana
324 Thai
325 Tibetan
1ac13f9a 326 Yi
1ac13f9a 327
376d9008 328Extended property classes can supplement the basic
1ac13f9a 329properties, defined by the F<PropList> Unicode database:
330
1d81abf3 331 ASCIIHexDigit
eb0cc9e3 332 BidiControl
1ac13f9a 333 Dash
1d81abf3 334 Deprecated
1ac13f9a 335 Diacritic
336 Extender
1d81abf3 337 GraphemeLink
eb0cc9e3 338 HexDigit
e9ad1727 339 Hyphen
340 Ideographic
1d81abf3 341 IDSBinaryOperator
342 IDSTrinaryOperator
eb0cc9e3 343 JoinControl
1d81abf3 344 LogicalOrderException
eb0cc9e3 345 NoncharacterCodePoint
346 OtherAlphabetic
1d81abf3 347 OtherDefaultIgnorableCodePoint
348 OtherGraphemeExtend
eb0cc9e3 349 OtherLowercase
350 OtherMath
351 OtherUppercase
352 QuotationMark
1d81abf3 353 Radical
354 SoftDotted
355 TerminalPunctuation
356 UnifiedIdeograph
eb0cc9e3 357 WhiteSpace
1ac13f9a 358
376d9008 359and there are further derived properties:
1ac13f9a 360
eb0cc9e3 361 Alphabetic Lu + Ll + Lt + Lm + Lo + OtherAlphabetic
362 Lowercase Ll + OtherLowercase
363 Uppercase Lu + OtherUppercase
364 Math Sm + OtherMath
1ac13f9a 365
366 ID_Start Lu + Ll + Lt + Lm + Lo + Nl
367 ID_Continue ID_Start + Mn + Mc + Nd + Pc
368
369 Any Any character
66b79f27 370 Assigned Any non-Cn character (i.e. synonym for \P{Cn})
371 Unassigned Synonym for \p{Cn}
1ac13f9a 372 Common Any character (or unassigned code point)
e150c829 373 not explicitly assigned to a script
2796c109 374
1bfb14c4 375For backward compatibility (with Perl 5.6), all properties mentioned
376so far may have C<Is> prepended to their name, so C<\P{IsLu}>, for
377example, is equal to C<\P{Lu}>.
eb0cc9e3 378
2796c109 379=head2 Blocks
380
1bfb14c4 381In addition to B<scripts>, Unicode also defines B<blocks> of
382characters. The difference between scripts and blocks is that the
383concept of scripts is closer to natural languages, while the concept
384of blocks is more of an artificial grouping based on groups of 256
376d9008 385Unicode characters. For example, the C<Latin> script contains letters
1bfb14c4 386from many blocks but does not contain all the characters from those
376d9008 387blocks. It does not, for example, contain digits, because digits are
388shared across many scripts. Digits and similar groups, like
389punctuation, are in a category called C<Common>.
2796c109 390
cfc01aea 391For more about scripts, see the UTR #24:
392
393 http://www.unicode.org/unicode/reports/tr24/
394
395For more about blocks, see:
396
397 http://www.unicode.org/Public/UNIDATA/Blocks.txt
2796c109 398
376d9008 399Block names are given with the C<In> prefix. For example, the
400Katakana block is referenced via C<\p{InKatakana}>. The C<In>
7eabb34d 401prefix may be omitted if there is no naming conflict with a script
eb0cc9e3 402or any other property, but it is recommended that C<In> always be used
1bfb14c4 403for block tests to avoid confusion.
eb0cc9e3 404
405These block names are supported:
406
1d81abf3 407 InAlphabeticPresentationForms
408 InArabic
409 InArabicPresentationFormsA
410 InArabicPresentationFormsB
411 InArmenian
412 InArrows
413 InBasicLatin
414 InBengali
415 InBlockElements
416 InBopomofo
417 InBopomofoExtended
418 InBoxDrawing
419 InBraillePatterns
420 InBuhid
421 InByzantineMusicalSymbols
422 InCJKCompatibility
423 InCJKCompatibilityForms
424 InCJKCompatibilityIdeographs
425 InCJKCompatibilityIdeographsSupplement
426 InCJKRadicalsSupplement
427 InCJKSymbolsAndPunctuation
428 InCJKUnifiedIdeographs
429 InCJKUnifiedIdeographsExtensionA
430 InCJKUnifiedIdeographsExtensionB
431 InCherokee
432 InCombiningDiacriticalMarks
433 InCombiningDiacriticalMarksforSymbols
434 InCombiningHalfMarks
435 InControlPictures
436 InCurrencySymbols
437 InCyrillic
438 InCyrillicSupplementary
439 InDeseret
440 InDevanagari
441 InDingbats
442 InEnclosedAlphanumerics
443 InEnclosedCJKLettersAndMonths
444 InEthiopic
445 InGeneralPunctuation
446 InGeometricShapes
447 InGeorgian
448 InGothic
449 InGreekExtended
450 InGreekAndCoptic
451 InGujarati
452 InGurmukhi
453 InHalfwidthAndFullwidthForms
454 InHangulCompatibilityJamo
455 InHangulJamo
456 InHangulSyllables
457 InHanunoo
458 InHebrew
459 InHighPrivateUseSurrogates
460 InHighSurrogates
461 InHiragana
462 InIPAExtensions
463 InIdeographicDescriptionCharacters
464 InKanbun
465 InKangxiRadicals
466 InKannada
467 InKatakana
468 InKatakanaPhoneticExtensions
469 InKhmer
470 InLao
471 InLatin1Supplement
472 InLatinExtendedA
473 InLatinExtendedAdditional
474 InLatinExtendedB
475 InLetterlikeSymbols
476 InLowSurrogates
477 InMalayalam
478 InMathematicalAlphanumericSymbols
479 InMathematicalOperators
480 InMiscellaneousMathematicalSymbolsA
481 InMiscellaneousMathematicalSymbolsB
482 InMiscellaneousSymbols
483 InMiscellaneousTechnical
484 InMongolian
485 InMusicalSymbols
486 InMyanmar
487 InNumberForms
488 InOgham
489 InOldItalic
490 InOpticalCharacterRecognition
491 InOriya
492 InPrivateUseArea
493 InRunic
494 InSinhala
495 InSmallFormVariants
496 InSpacingModifierLetters
497 InSpecials
498 InSuperscriptsAndSubscripts
499 InSupplementalArrowsA
500 InSupplementalArrowsB
501 InSupplementalMathematicalOperators
502 InSupplementaryPrivateUseAreaA
503 InSupplementaryPrivateUseAreaB
504 InSyriac
505 InTagalog
506 InTagbanwa
507 InTags
508 InTamil
509 InTelugu
510 InThaana
511 InThai
512 InTibetan
513 InUnifiedCanadianAboriginalSyllabics
514 InVariationSelectors
515 InYiRadicals
516 InYiSyllables
32293815 517
210b36aa 518=over 4
519
393fec97 520=item *
521
376d9008 522The special pattern C<\X> matches any extended Unicode
523sequence--"a combining character sequence" in Standardese--where the
524first character is a base character and subsequent characters are mark
525characters that apply to the base character. C<\X> is equivalent to
393fec97 526C<(?:\PM\pM*)>.
527
393fec97 528=item *
529
383e7cdd 530The C<tr///> operator translates characters instead of bytes. Note
376d9008 531that the C<tr///CU> functionality has been removed. For similar
532functionality see pack('U0', ...) and pack('C0', ...).
393fec97 533
393fec97 534=item *
535
536Case translation operators use the Unicode case translation tables
376d9008 537when character input is provided. Note that C<uc()>, or C<\U> in
538interpolated strings, translates to uppercase, while C<ucfirst>,
539or C<\u> in interpolated strings, translates to titlecase in languages
540that make the distinction.
393fec97 541
542=item *
543
376d9008 544Most operators that deal with positions or lengths in a string will
75daf61c 545automatically switch to using character positions, including
546C<chop()>, C<substr()>, C<pos()>, C<index()>, C<rindex()>,
547C<sprintf()>, C<write()>, and C<length()>. Operators that
376d9008 548specifically do not switch include C<vec()>, C<pack()>, and
549C<unpack()>. Operators that really don't care include C<chomp()>,
550operators that treats strings as a bucket of bits such as C<sort()>,
551and operators dealing with filenames.
393fec97 552
553=item *
554
1bfb14c4 555The C<pack()>/C<unpack()> letters C<c> and C<C> do I<not> change,
376d9008 556since they are often used for byte-oriented formats. Again, think
1bfb14c4 557C<char> in the C language.
558
559There is a new C<U> specifier that converts between Unicode characters
560and code points.
393fec97 561
562=item *
563
376d9008 564The C<chr()> and C<ord()> functions work on characters, similar to
565C<pack("U")> and C<unpack("U")>, I<not> C<pack("C")> and
566C<unpack("C")>. C<pack("C")> and C<unpack("C")> are methods for
567emulating byte-oriented C<chr()> and C<ord()> on Unicode strings.
568While these methods reveal the internal encoding of Unicode strings,
569that is not something one normally needs to care about at all.
393fec97 570
571=item *
572
376d9008 573The bit string operators, C<& | ^ ~>, can operate on character data.
574However, for backward compatibility, such as when using bit string
575operations when characters are all less than 256 in ordinal value, one
576should not use C<~> (the bit complement) with characters of both
577values less than 256 and values greater than 256. Most importantly,
578DeMorgan's laws (C<~($x|$y) eq ~$x&~$y> and C<~($x&$y) eq ~$x|~$y>)
579will not hold. The reason for this mathematical I<faux pas> is that
580the complement cannot return B<both> the 8-bit (byte-wide) bit
581complement B<and> the full character-wide bit complement.
a1ca4561 582
583=item *
584
983ffd37 585lc(), uc(), lcfirst(), and ucfirst() work for the following cases:
586
587=over 8
588
589=item *
590
591the case mapping is from a single Unicode character to another
376d9008 592single Unicode character, or
983ffd37 593
594=item *
595
596the case mapping is from a single Unicode character to more
376d9008 597than one Unicode character.
983ffd37 598
599=back
600
63de3cb2 601Things to do with locales (Lithuanian, Turkish, Azeri) do B<not> work
602since Perl does not understand the concept of Unicode locales.
983ffd37 603
dc33ebcf 604See the Unicode Technical Report #21, Case Mappings, for more details.
605
983ffd37 606=back
607
dc33ebcf 608=over 4
ac1256e8 609
610=item *
611
393fec97 612And finally, C<scalar reverse()> reverses by character rather than by byte.
613
614=back
615
376d9008 616=head2 User-Defined Character Properties
491fd90a 617
618You can define your own character properties by defining subroutines
3a2263fe 619whose names begin with "In" or "Is". The subroutines must be defined
620in the C<main> package. The user-defined properties can be used in the
621regular expression C<\p> and C<\P> constructs. Note that the effect
622is compile-time and immutable once defined.
491fd90a 623
376d9008 624The subroutines must return a specially-formatted string, with one
625or more newline-separated lines. Each line must be one of the following:
491fd90a 626
627=over 4
628
629=item *
630
99a6b1f0 631Two hexadecimal numbers separated by horizontal whitespace (space or
376d9008 632tabular characters) denoting a range of Unicode code points to include.
491fd90a 633
634=item *
635
376d9008 636Something to include, prefixed by "+": a built-in character
637property (prefixed by "utf8::"), to represent all the characters in that
638property; two hexadecimal code points for a range; or a single
639hexadecimal code point.
491fd90a 640
641=item *
642
376d9008 643Something to exclude, prefixed by "-": an existing character
11ef8fdd 644property (prefixed by "utf8::"), for all the characters in that
376d9008 645property; two hexadecimal code points for a range; or a single
646hexadecimal code point.
491fd90a 647
648=item *
649
376d9008 650Something to negate, prefixed "!": an existing character
11ef8fdd 651property (prefixed by "utf8::") for all the characters except the
376d9008 652characters in the property; two hexadecimal code points for a range;
653or a single hexadecimal code point.
491fd90a 654
655=back
656
657For example, to define a property that covers both the Japanese
658syllabaries (hiragana and katakana), you can define
659
660 sub InKana {
d5822f25 661 return <<END;
662 3040\t309F
663 30A0\t30FF
491fd90a 664 END
665 }
666
d5822f25 667Imagine that the here-doc end marker is at the beginning of the line.
668Now you can use C<\p{InKana}> and C<\P{InKana}>.
491fd90a 669
670You could also have used the existing block property names:
671
672 sub InKana {
673 return <<'END';
674 +utf8::InHiragana
675 +utf8::InKatakana
676 END
677 }
678
679Suppose you wanted to match only the allocated characters,
d5822f25 680not the raw block ranges: in other words, you want to remove
491fd90a 681the non-characters:
682
683 sub InKana {
684 return <<'END';
685 +utf8::InHiragana
686 +utf8::InKatakana
687 -utf8::IsCn
688 END
689 }
690
691The negation is useful for defining (surprise!) negated classes.
692
693 sub InNotKana {
694 return <<'END';
695 !utf8::InHiragana
696 -utf8::InKatakana
697 +utf8::IsCn
698 END
699 }
700
3a2263fe 701You can also define your own mappings to be used in the lc(),
702lcfirst(), uc(), and ucfirst() (or their string-inlined versions).
703The principle is the same: define subroutines in the C<main> package
704with names like C<ToLower> (for lc() and lcfirst()), C<ToTitle> (for
705the first character in ucfirst()), and C<ToUpper> (for uc(), and the
706rest of the characters in ucfirst()).
707
708The string returned by the subroutines needs now to be three
709hexadecimal numbers separated by tabulators: start of the source
710range, end of the source range, and start of the destination range.
711For example:
712
713 sub ToUpper {
714 return <<END;
715 0061\t0063\t0041
716 END
717 }
718
719defines an uc() mapping that causes only the characters "a", "b", and
720"c" to be mapped to "A", "B", "C", all other characters will remain
721unchanged.
722
723If there is no source range to speak of, that is, the mapping is from
724a single character to another single character, leave the end of the
725source range empty, but the two tabulator characters are still needed.
726For example:
727
728 sub ToLower {
729 return <<END;
730 0041\t\t0061
731 END
732 }
733
734defines a lc() mapping that causes only "A" to be mapped to "a", all
735other characters will remain unchanged.
736
737(For serious hackers only) If you want to introspect the default
738mappings, you can find the data in the directory
739C<$Config{privlib}>/F<unicore/To/>. The mapping data is returned as
740the here-document, and the C<utf8::ToSpecFoo> are special exception
741mappings derived from <$Config{privlib}>/F<unicore/SpecialCasing.txt>.
742The C<Digit> and C<Fold> mappings that one can see in the directory
743are not directly user-accessible, one can use either the
744C<Unicode::UCD> module, or just match case-insensitively (that's when
745the C<Fold> mapping is used).
746
747A final note on the user-defined property tests and mappings: they
748will be used only if the scalar has been marked as having Unicode
749characters. Old byte-style strings will not be affected.
750
376d9008 751=head2 Character Encodings for Input and Output
8cbd9a7a 752
7221edc9 753See L<Encode>.
8cbd9a7a 754
c29a771d 755=head2 Unicode Regular Expression Support Level
776f8809 756
376d9008 757The following list of Unicode support for regular expressions describes
758all the features currently supported. The references to "Level N"
759and the section numbers refer to the Unicode Technical Report 18,
760"Unicode Regular Expression Guidelines".
776f8809 761
762=over 4
763
764=item *
765
766Level 1 - Basic Unicode Support
767
768 2.1 Hex Notation - done [1]
3bfdc84c 769 Named Notation - done [2]
776f8809 770 2.2 Categories - done [3][4]
771 2.3 Subtraction - MISSING [5][6]
772 2.4 Simple Word Boundaries - done [7]
78d3e1bf 773 2.5 Simple Loose Matches - done [8]
776f8809 774 2.6 End of Line - MISSING [9][10]
775
776 [ 1] \x{...}
777 [ 2] \N{...}
eb0cc9e3 778 [ 3] . \p{...} \P{...}
29bdacb8 779 [ 4] now scripts (see UTR#24 Script Names) in addition to blocks
776f8809 780 [ 5] have negation
237bad5b 781 [ 6] can use regular expression look-ahead [a]
782 or user-defined character properties [b] to emulate subtraction
776f8809 783 [ 7] include Letters in word characters
376d9008 784 [ 8] note that Perl does Full case-folding in matching, not Simple:
835863de 785 for example U+1F88 is equivalent with U+1F00 U+03B9,
e0f9d4a8 786 not with 1F80. This difference matters for certain Greek
376d9008 787 capital letters with certain modifiers: the Full case-folding
788 decomposes the letter, while the Simple case-folding would map
e0f9d4a8 789 it to a single character.
776f8809 790 [ 9] see UTR#13 Unicode Newline Guidelines
835863de 791 [10] should do ^ and $ also on \x{85}, \x{2028} and \x{2029}
ec83e909 792 (should also affect <>, $., and script line numbers)
3bfdc84c 793 (the \x{85}, \x{2028} and \x{2029} do match \s)
7207e29d 794
237bad5b 795[a] You can mimic class subtraction using lookahead.
dbe420b4 796For example, what TR18 might write as
29bdacb8 797
dbe420b4 798 [{Greek}-[{UNASSIGNED}]]
799
800in Perl can be written as:
801
1d81abf3 802 (?!\p{Unassigned})\p{InGreekAndCoptic}
803 (?=\p{Assigned})\p{InGreekAndCoptic}
dbe420b4 804
805But in this particular example, you probably really want
806
1bfb14c4 807 \p{GreekAndCoptic}
dbe420b4 808
809which will match assigned characters known to be part of the Greek script.
29bdacb8 810
818c4caa 811[b] See L</"User-Defined Character Properties">.
237bad5b 812
776f8809 813=item *
814
815Level 2 - Extended Unicode Support
816
63de3cb2 817 3.1 Surrogates - MISSING [11]
818 3.2 Canonical Equivalents - MISSING [12][13]
819 3.3 Locale-Independent Graphemes - MISSING [14]
820 3.4 Locale-Independent Words - MISSING [15]
821 3.5 Locale-Independent Loose Matches - MISSING [16]
822
823 [11] Surrogates are solely a UTF-16 concept and Perl's internal
824 representation is UTF-8. The Encode module does UTF-16, though.
825 [12] see UTR#15 Unicode Normalization
826 [13] have Unicode::Normalize but not integrated to regexes
827 [14] have \X but at this level . should equal that
828 [15] need three classes, not just \w and \W
829 [16] see UTR#21 Case Mappings
776f8809 830
831=item *
832
833Level 3 - Locale-Sensitive Support
834
835 4.1 Locale-Dependent Categories - MISSING
836 4.2 Locale-Dependent Graphemes - MISSING [16][17]
837 4.3 Locale-Dependent Words - MISSING
838 4.4 Locale-Dependent Loose Matches - MISSING
839 4.5 Locale-Dependent Ranges - MISSING
840
841 [16] see UTR#10 Unicode Collation Algorithms
842 [17] have Unicode::Collate but not integrated to regexes
843
844=back
845
c349b1b9 846=head2 Unicode Encodings
847
376d9008 848Unicode characters are assigned to I<code points>, which are abstract
849numbers. To use these numbers, various encodings are needed.
c349b1b9 850
851=over 4
852
c29a771d 853=item *
5cb3728c 854
855UTF-8
c349b1b9 856
3e4dbfed 857UTF-8 is a variable-length (1 to 6 bytes, current character allocations
376d9008 858require 4 bytes), byte-order independent encoding. For ASCII (and we
859really do mean 7-bit ASCII, not another 8-bit encoding), UTF-8 is
860transparent.
c349b1b9 861
8c007b5a 862The following table is from Unicode 3.2.
05632f9a 863
864 Code Points 1st Byte 2nd Byte 3rd Byte 4th Byte
865
8c007b5a 866 U+0000..U+007F 00..7F
867 U+0080..U+07FF C2..DF 80..BF
ec90690f 868 U+0800..U+0FFF E0 A0..BF 80..BF
869 U+1000..U+CFFF E1..EC 80..BF 80..BF
870 U+D000..U+D7FF ED 80..9F 80..BF
8c007b5a 871 U+D800..U+DFFF ******* ill-formed *******
ec90690f 872 U+E000..U+FFFF EE..EF 80..BF 80..BF
05632f9a 873 U+10000..U+3FFFF F0 90..BF 80..BF 80..BF
874 U+40000..U+FFFFF F1..F3 80..BF 80..BF 80..BF
875 U+100000..U+10FFFF F4 80..8F 80..BF 80..BF
876
376d9008 877Note the C<A0..BF> in C<U+0800..U+0FFF>, the C<80..9F> in
878C<U+D000...U+D7FF>, the C<90..B>F in C<U+10000..U+3FFFF>, and the
879C<80...8F> in C<U+100000..U+10FFFF>. The "gaps" are caused by legal
880UTF-8 avoiding non-shortest encodings: it is technically possible to
881UTF-8-encode a single code point in different ways, but that is
882explicitly forbidden, and the shortest possible encoding should always
883be used. So that's what Perl does.
37361303 884
376d9008 885Another way to look at it is via bits:
05632f9a 886
887 Code Points 1st Byte 2nd Byte 3rd Byte 4th Byte
888
889 0aaaaaaa 0aaaaaaa
890 00000bbbbbaaaaaa 110bbbbb 10aaaaaa
891 ccccbbbbbbaaaaaa 1110cccc 10bbbbbb 10aaaaaa
892 00000dddccccccbbbbbbaaaaaa 11110ddd 10cccccc 10bbbbbb 10aaaaaa
893
894As you can see, the continuation bytes all begin with C<10>, and the
8c007b5a 895leading bits of the start byte tell how many bytes the are in the
05632f9a 896encoded character.
897
c29a771d 898=item *
5cb3728c 899
900UTF-EBCDIC
dbe420b4 901
376d9008 902Like UTF-8 but EBCDIC-safe, in the way that UTF-8 is ASCII-safe.
dbe420b4 903
c29a771d 904=item *
5cb3728c 905
906UTF-16, UTF-16BE, UTF16-LE, Surrogates, and BOMs (Byte Order Marks)
c349b1b9 907
1bfb14c4 908The followings items are mostly for reference and general Unicode
909knowledge, Perl doesn't use these constructs internally.
dbe420b4 910
c349b1b9 911UTF-16 is a 2 or 4 byte encoding. The Unicode code points
1bfb14c4 912C<U+0000..U+FFFF> are stored in a single 16-bit unit, and the code
913points C<U+10000..U+10FFFF> in two 16-bit units. The latter case is
c349b1b9 914using I<surrogates>, the first 16-bit unit being the I<high
915surrogate>, and the second being the I<low surrogate>.
916
376d9008 917Surrogates are code points set aside to encode the C<U+10000..U+10FFFF>
c349b1b9 918range of Unicode code points in pairs of 16-bit units. The I<high
376d9008 919surrogates> are the range C<U+D800..U+DBFF>, and the I<low surrogates>
920are the range C<U+DC00..U+DFFF>. The surrogate encoding is
c349b1b9 921
922 $hi = ($uni - 0x10000) / 0x400 + 0xD800;
923 $lo = ($uni - 0x10000) % 0x400 + 0xDC00;
924
925and the decoding is
926
1a3fa709 927 $uni = 0x10000 + ($hi - 0xD800) * 0x400 + ($lo - 0xDC00);
c349b1b9 928
feda178f 929If you try to generate surrogates (for example by using chr()), you
376d9008 930will get a warning if warnings are turned on, because those code
931points are not valid for a Unicode character.
9466bab6 932
376d9008 933Because of the 16-bitness, UTF-16 is byte-order dependent. UTF-16
c349b1b9 934itself can be used for in-memory computations, but if storage or
376d9008 935transfer is required either UTF-16BE (big-endian) or UTF-16LE
936(little-endian) encodings must be chosen.
c349b1b9 937
938This introduces another problem: what if you just know that your data
376d9008 939is UTF-16, but you don't know which endianness? Byte Order Marks, or
940BOMs, are a solution to this. A special character has been reserved
86bbd6d1 941in Unicode to function as a byte order marker: the character with the
376d9008 942code point C<U+FEFF> is the BOM.
042da322 943
c349b1b9 944The trick is that if you read a BOM, you will know the byte order,
376d9008 945since if it was written on a big-endian platform, you will read the
946bytes C<0xFE 0xFF>, but if it was written on a little-endian platform,
947you will read the bytes C<0xFF 0xFE>. (And if the originating platform
948was writing in UTF-8, you will read the bytes C<0xEF 0xBB 0xBF>.)
042da322 949
86bbd6d1 950The way this trick works is that the character with the code point
376d9008 951C<U+FFFE> is guaranteed not to be a valid Unicode character, so the
952sequence of bytes C<0xFF 0xFE> is unambiguously "BOM, represented in
1bfb14c4 953little-endian format" and cannot be C<U+FFFE>, represented in big-endian
042da322 954format".
c349b1b9 955
c29a771d 956=item *
5cb3728c 957
958UTF-32, UTF-32BE, UTF32-LE
c349b1b9 959
960The UTF-32 family is pretty much like the UTF-16 family, expect that
042da322 961the units are 32-bit, and therefore the surrogate scheme is not
376d9008 962needed. The BOM signatures will be C<0x00 0x00 0xFE 0xFF> for BE and
963C<0xFF 0xFE 0x00 0x00> for LE.
c349b1b9 964
c29a771d 965=item *
5cb3728c 966
967UCS-2, UCS-4
c349b1b9 968
86bbd6d1 969Encodings defined by the ISO 10646 standard. UCS-2 is a 16-bit
376d9008 970encoding. Unlike UTF-16, UCS-2 is not extensible beyond C<U+FFFF>,
339cfa0e 971because it does not use surrogates. UCS-4 is a 32-bit encoding,
972functionally identical to UTF-32.
c349b1b9 973
c29a771d 974=item *
5cb3728c 975
976UTF-7
c349b1b9 977
376d9008 978A seven-bit safe (non-eight-bit) encoding, which is useful if the
979transport or storage is not eight-bit safe. Defined by RFC 2152.
c349b1b9 980
95a1a48b 981=back
982
0d7c09bb 983=head2 Security Implications of Unicode
984
985=over 4
986
987=item *
988
989Malformed UTF-8
bf0fa0b2 990
991Unfortunately, the specification of UTF-8 leaves some room for
992interpretation of how many bytes of encoded output one should generate
376d9008 993from one input Unicode character. Strictly speaking, the shortest
994possible sequence of UTF-8 bytes should be generated,
995because otherwise there is potential for an input buffer overflow at
feda178f 996the receiving end of a UTF-8 connection. Perl always generates the
376d9008 997shortest length UTF-8, and with warnings on Perl will warn about
998non-shortest length UTF-8 along with other malformations, such as the
999surrogates, which are not real Unicode code points.
bf0fa0b2 1000
0d7c09bb 1001=item *
1002
1003Regular expressions behave slightly differently between byte data and
376d9008 1004character (Unicode) data. For example, the "word character" character
1005class C<\w> will work differently depending on if data is eight-bit bytes
1006or Unicode.
0d7c09bb 1007
376d9008 1008In the first case, the set of C<\w> characters is either small--the
1009default set of alphabetic characters, digits, and the "_"--or, if you
0d7c09bb 1010are using a locale (see L<perllocale>), the C<\w> might contain a few
1011more letters according to your language and country.
1012
376d9008 1013In the second case, the C<\w> set of characters is much, much larger.
1bfb14c4 1014Most importantly, even in the set of the first 256 characters, it will
1015probably match different characters: unlike most locales, which are
1016specific to a language and country pair, Unicode classifies all the
1017characters that are letters I<somewhere> as C<\w>. For example, your
1018locale might not think that LATIN SMALL LETTER ETH is a letter (unless
1019you happen to speak Icelandic), but Unicode does.
0d7c09bb 1020
376d9008 1021As discussed elsewhere, Perl has one foot (two hooves?) planted in
1bfb14c4 1022each of two worlds: the old world of bytes and the new world of
1023characters, upgrading from bytes to characters when necessary.
376d9008 1024If your legacy code does not explicitly use Unicode, no automatic
1025switch-over to characters should happen. Characters shouldn't get
1bfb14c4 1026downgraded to bytes, either. It is possible to accidentally mix bytes
1027and characters, however (see L<perluniintro>), in which case C<\w> in
1028regular expressions might start behaving differently. Review your
1029code. Use warnings and the C<strict> pragma.
0d7c09bb 1030
1031=back
1032
c349b1b9 1033=head2 Unicode in Perl on EBCDIC
1034
376d9008 1035The way Unicode is handled on EBCDIC platforms is still
1036experimental. On such platforms, references to UTF-8 encoding in this
1037document and elsewhere should be read as meaning the UTF-EBCDIC
1038specified in Unicode Technical Report 16, unless ASCII vs. EBCDIC issues
c349b1b9 1039are specifically discussed. There is no C<utfebcdic> pragma or
376d9008 1040":utfebcdic" layer; rather, "utf8" and ":utf8" are reused to mean
86bbd6d1 1041the platform's "natural" 8-bit encoding of Unicode. See L<perlebcdic>
1042for more discussion of the issues.
c349b1b9 1043
b310b053 1044=head2 Locales
1045
4616122b 1046Usually locale settings and Unicode do not affect each other, but
b310b053 1047there are a couple of exceptions:
1048
1049=over 4
1050
1051=item *
1052
1053If your locale environment variables (LANGUAGE, LC_ALL, LC_CTYPE, LANG)
1054contain the strings 'UTF-8' or 'UTF8' (case-insensitive matching),
376d9008 1055the default encodings of your STDIN, STDOUT, and STDERR, and of
1056B<any subsequent file open>, are considered to be UTF-8.
b310b053 1057
1058=item *
1059
376d9008 1060Perl tries really hard to work both with Unicode and the old
1061byte-oriented world. Most often this is nice, but sometimes Perl's
1062straddling of the proverbial fence causes problems.
b310b053 1063
1064=back
1065
95a1a48b 1066=head2 Using Unicode in XS
1067
3a2263fe 1068If you want to handle Perl Unicode in XS extensions, you may find the
1069following C APIs useful. See also L<perlguts/"Unicode Support"> for an
1070explanation about Unicode at the XS level, and L<perlapi> for the API
1071details.
95a1a48b 1072
1073=over 4
1074
1075=item *
1076
1bfb14c4 1077C<DO_UTF8(sv)> returns true if the C<UTF8> flag is on and the bytes
1078pragma is not in effect. C<SvUTF8(sv)> returns true is the C<UTF8>
1079flag is on; the bytes pragma is ignored. The C<UTF8> flag being on
1080does B<not> mean that there are any characters of code points greater
1081than 255 (or 127) in the scalar or that there are even any characters
1082in the scalar. What the C<UTF8> flag means is that the sequence of
1083octets in the representation of the scalar is the sequence of UTF-8
1084encoded code points of the characters of a string. The C<UTF8> flag
1085being off means that each octet in this representation encodes a
1086single character with code point 0..255 within the string. Perl's
1087Unicode model is not to use UTF-8 until it is absolutely necessary.
95a1a48b 1088
1089=item *
1090
1bfb14c4 1091C<uvuni_to_utf8(buf, chr>) writes a Unicode character code point into
1092a buffer encoding the code point as UTF-8, and returns a pointer
95a1a48b 1093pointing after the UTF-8 bytes.
1094
1095=item *
1096
376d9008 1097C<utf8_to_uvuni(buf, lenp)> reads UTF-8 encoded bytes from a buffer and
1098returns the Unicode character code point and, optionally, the length of
1099the UTF-8 byte sequence.
95a1a48b 1100
1101=item *
1102
376d9008 1103C<utf8_length(start, end)> returns the length of the UTF-8 encoded buffer
1104in characters. C<sv_len_utf8(sv)> returns the length of the UTF-8 encoded
95a1a48b 1105scalar.
1106
1107=item *
1108
376d9008 1109C<sv_utf8_upgrade(sv)> converts the string of the scalar to its UTF-8
1110encoded form. C<sv_utf8_downgrade(sv)> does the opposite, if
1111possible. C<sv_utf8_encode(sv)> is like sv_utf8_upgrade except that
1112it does not set the C<UTF8> flag. C<sv_utf8_decode()> does the
1113opposite of C<sv_utf8_encode()>. Note that none of these are to be
1114used as general-purpose encoding or decoding interfaces: C<use Encode>
1115for that. C<sv_utf8_upgrade()> is affected by the encoding pragma
1116but C<sv_utf8_downgrade()> is not (since the encoding pragma is
1117designed to be a one-way street).
95a1a48b 1118
1119=item *
1120
376d9008 1121C<is_utf8_char(s)> returns true if the pointer points to a valid UTF-8
90f968e0 1122character.
95a1a48b 1123
1124=item *
1125
376d9008 1126C<is_utf8_string(buf, len)> returns true if C<len> bytes of the buffer
95a1a48b 1127are valid UTF-8.
1128
1129=item *
1130
376d9008 1131C<UTF8SKIP(buf)> will return the number of bytes in the UTF-8 encoded
1132character in the buffer. C<UNISKIP(chr)> will return the number of bytes
1133required to UTF-8-encode the Unicode character code point. C<UTF8SKIP()>
90f968e0 1134is useful for example for iterating over the characters of a UTF-8
376d9008 1135encoded buffer; C<UNISKIP()> is useful, for example, in computing
90f968e0 1136the size required for a UTF-8 encoded buffer.
95a1a48b 1137
1138=item *
1139
376d9008 1140C<utf8_distance(a, b)> will tell the distance in characters between the
95a1a48b 1141two pointers pointing to the same UTF-8 encoded buffer.
1142
1143=item *
1144
376d9008 1145C<utf8_hop(s, off)> will return a pointer to an UTF-8 encoded buffer
1146that is C<off> (positive or negative) Unicode characters displaced
1147from the UTF-8 buffer C<s>. Be careful not to overstep the buffer:
1148C<utf8_hop()> will merrily run off the end or the beginning of the
1149buffer if told to do so.
95a1a48b 1150
d2cc3551 1151=item *
1152
376d9008 1153C<pv_uni_display(dsv, spv, len, pvlim, flags)> and
1154C<sv_uni_display(dsv, ssv, pvlim, flags)> are useful for debugging the
1155output of Unicode strings and scalars. By default they are useful
1156only for debugging--they display B<all> characters as hexadecimal code
1bfb14c4 1157points--but with the flags C<UNI_DISPLAY_ISPRINT>,
1158C<UNI_DISPLAY_BACKSLASH>, and C<UNI_DISPLAY_QQ> you can make the
1159output more readable.
d2cc3551 1160
1161=item *
1162
376d9008 1163C<ibcmp_utf8(s1, pe1, u1, l1, u1, s2, pe2, l2, u2)> can be used to
1164compare two strings case-insensitively in Unicode. For case-sensitive
1165comparisons you can just use C<memEQ()> and C<memNE()> as usual.
d2cc3551 1166
c349b1b9 1167=back
1168
95a1a48b 1169For more information, see L<perlapi>, and F<utf8.c> and F<utf8.h>
1170in the Perl source code distribution.
1171
c29a771d 1172=head1 BUGS
1173
376d9008 1174=head2 Interaction with Locales
7eabb34d 1175
376d9008 1176Use of locales with Unicode data may lead to odd results. Currently,
1177Perl attempts to attach 8-bit locale info to characters in the range
11780..255, but this technique is demonstrably incorrect for locales that
1179use characters above that range when mapped into Unicode. Perl's
1180Unicode support will also tend to run slower. Use of locales with
1181Unicode is discouraged.
c29a771d 1182
376d9008 1183=head2 Interaction with Extensions
7eabb34d 1184
376d9008 1185When Perl exchanges data with an extension, the extension should be
7eabb34d 1186able to understand the UTF-8 flag and act accordingly. If the
376d9008 1187extension doesn't know about the flag, it's likely that the extension
1188will return incorrectly-flagged data.
7eabb34d 1189
1190So if you're working with Unicode data, consult the documentation of
1191every module you're using if there are any issues with Unicode data
1192exchange. If the documentation does not talk about Unicode at all,
a73d23f6 1193suspect the worst and probably look at the source to learn how the
376d9008 1194module is implemented. Modules written completely in Perl shouldn't
a73d23f6 1195cause problems. Modules that directly or indirectly access code written
1196in other programming languages are at risk.
7eabb34d 1197
376d9008 1198For affected functions, the simple strategy to avoid data corruption is
7eabb34d 1199to always make the encoding of the exchanged data explicit. Choose an
376d9008 1200encoding that you know the extension can handle. Convert arguments passed
7eabb34d 1201to the extensions to that encoding and convert results back from that
1202encoding. Write wrapper functions that do the conversions for you, so
1203you can later change the functions when the extension catches up.
1204
376d9008 1205To provide an example, let's say the popular Foo::Bar::escape_html
7eabb34d 1206function doesn't deal with Unicode data yet. The wrapper function
1207would convert the argument to raw UTF-8 and convert the result back to
376d9008 1208Perl's internal representation like so:
7eabb34d 1209
1210 sub my_escape_html ($) {
1211 my($what) = shift;
1212 return unless defined $what;
1213 Encode::decode_utf8(Foo::Bar::escape_html(Encode::encode_utf8($what)));
1214 }
1215
1216Sometimes, when the extension does not convert data but just stores
1217and retrieves them, you will be in a position to use the otherwise
1218dangerous Encode::_utf8_on() function. Let's say the popular
66b79f27 1219C<Foo::Bar> extension, written in C, provides a C<param> method that
7eabb34d 1220lets you store and retrieve data according to these prototypes:
1221
1222 $self->param($name, $value); # set a scalar
1223 $value = $self->param($name); # retrieve a scalar
1224
1225If it does not yet provide support for any encoding, one could write a
1226derived class with such a C<param> method:
1227
1228 sub param {
1229 my($self,$name,$value) = @_;
1230 utf8::upgrade($name); # make sure it is UTF-8 encoded
1231 if (defined $value)
1232 utf8::upgrade($value); # make sure it is UTF-8 encoded
1233 return $self->SUPER::param($name,$value);
1234 } else {
1235 my $ret = $self->SUPER::param($name);
1236 Encode::_utf8_on($ret); # we know, it is UTF-8 encoded
1237 return $ret;
1238 }
1239 }
1240
a73d23f6 1241Some extensions provide filters on data entry/exit points, such as
1242DB_File::filter_store_key and family. Look out for such filters in
66b79f27 1243the documentation of your extensions, they can make the transition to
7eabb34d 1244Unicode data much easier.
1245
376d9008 1246=head2 Speed
7eabb34d 1247
c29a771d 1248Some functions are slower when working on UTF-8 encoded strings than
574c8022 1249on byte encoded strings. All functions that need to hop over
c29a771d 1250characters such as length(), substr() or index() can work B<much>
1251faster when the underlying data are byte-encoded. Witness the
1252following benchmark:
666f95b9 1253
c29a771d 1254 % perl -e '
1255 use Benchmark;
1256 use strict;
1257 our $l = 10000;
1258 our $u = our $b = "x" x $l;
1259 substr($u,0,1) = "\x{100}";
1260 timethese(-2,{
1261 LENGTH_B => q{ length($b) },
1262 LENGTH_U => q{ length($u) },
1263 SUBSTR_B => q{ substr($b, $l/4, $l/2) },
1264 SUBSTR_U => q{ substr($u, $l/4, $l/2) },
1265 });
1266 '
1267 Benchmark: running LENGTH_B, LENGTH_U, SUBSTR_B, SUBSTR_U for at least 2 CPU seconds...
1268 LENGTH_B: 2 wallclock secs ( 2.36 usr + 0.00 sys = 2.36 CPU) @ 5649983.05/s (n=13333960)
1269 LENGTH_U: 2 wallclock secs ( 2.11 usr + 0.00 sys = 2.11 CPU) @ 12155.45/s (n=25648)
1270 SUBSTR_B: 3 wallclock secs ( 2.16 usr + 0.00 sys = 2.16 CPU) @ 374480.09/s (n=808877)
1271 SUBSTR_U: 2 wallclock secs ( 2.11 usr + 0.00 sys = 2.11 CPU) @ 6791.00/s (n=14329)
666f95b9 1272
376d9008 1273The numbers show an incredible slowness on long UTF-8 strings. You
1274should carefully avoid using these functions in tight loops. If you
1275want to iterate over characters, the superior coding technique would
1276split the characters into an array instead of using substr, as the following
c29a771d 1277benchmark shows:
1278
1279 % perl -e '
1280 use Benchmark;
1281 use strict;
1282 our $l = 10000;
1283 our $u = our $b = "x" x $l;
1284 substr($u,0,1) = "\x{100}";
1285 timethese(-5,{
1286 SPLIT_B => q{ for my $c (split //, $b){} },
1287 SPLIT_U => q{ for my $c (split //, $u){} },
1288 SUBSTR_B => q{ for my $i (0..length($b)-1){my $c = substr($b,$i,1);} },
1289 SUBSTR_U => q{ for my $i (0..length($u)-1){my $c = substr($u,$i,1);} },
1290 });
1291 '
1292 Benchmark: running SPLIT_B, SPLIT_U, SUBSTR_B, SUBSTR_U for at least 5 CPU seconds...
1293 SPLIT_B: 6 wallclock secs ( 5.29 usr + 0.00 sys = 5.29 CPU) @ 56.14/s (n=297)
1294 SPLIT_U: 5 wallclock secs ( 5.17 usr + 0.01 sys = 5.18 CPU) @ 55.21/s (n=286)
1295 SUBSTR_B: 5 wallclock secs ( 5.34 usr + 0.00 sys = 5.34 CPU) @ 123.22/s (n=658)
1296 SUBSTR_U: 7 wallclock secs ( 6.20 usr + 0.00 sys = 6.20 CPU) @ 0.81/s (n=5)
1297
376d9008 1298Even though the algorithm based on C<substr()> is faster than
1299C<split()> for byte-encoded data, it pales in comparison to the speed
1300of C<split()> when used with UTF-8 data.
666f95b9 1301
c8d992ba 1302=head2 Porting code from perl-5.6.X
1303
1304Perl 5.8 has a different Unicode model from 5.6. In 5.6 the programmer
1305was required to use the C<utf8> pragma to declare that a given scope
1306expected to deal with Unicode data and had to make sure that only
1307Unicode data were reaching that scope. If you have code that is
1308working with 5.6, you will need some of the following adjustments to
1309your code. The examples are written such that the code will continue
1310to work under 5.6, so you should be safe to try them out.
1311
1312=over 4
1313
1314=item *
1315
1316A filehandle that should read or write UTF-8
1317
1318 if ($] > 5.007) {
1319 binmode $fh, ":utf8";
1320 }
1321
1322=item *
1323
1324A scalar that is going to be passed to some extension
1325
1326Be it Compress::Zlib, Apache::Request or any extension that has no
1327mention of Unicode in the manpage, you need to make sure that the
1328UTF-8 flag is stripped off. Note that at the time of this writing
1329(October 2002) the mentioned modules are not UTF-8-aware. Please
1330check the documentation to verify if this is still true.
1331
1332 if ($] > 5.007) {
1333 require Encode;
1334 $val = Encode::encode_utf8($val); # make octets
1335 }
1336
1337=item *
1338
1339A scalar we got back from an extension
1340
1341If you believe the scalar comes back as UTF-8, you will most likely
1342want the UTF-8 flag restored:
1343
1344 if ($] > 5.007) {
1345 require Encode;
1346 $val = Encode::decode_utf8($val);
1347 }
1348
1349=item *
1350
1351Same thing, if you are really sure it is UTF-8
1352
1353 if ($] > 5.007) {
1354 require Encode;
1355 Encode::_utf8_on($val);
1356 }
1357
1358=item *
1359
1360A wrapper for fetchrow_array and fetchrow_hashref
1361
1362When the database contains only UTF-8, a wrapper function or method is
1363a convenient way to replace all your fetchrow_array and
1364fetchrow_hashref calls. A wrapper function will also make it easier to
1365adapt to future enhancements in your database driver. Note that at the
1366time of this writing (October 2002), the DBI has no standardized way
1367to deal with UTF-8 data. Please check the documentation to verify if
1368that is still true.
1369
1370 sub fetchrow {
1371 my($self, $sth, $what) = @_; # $what is one of fetchrow_{array,hashref}
1372 if ($] < 5.007) {
1373 return $sth->$what;
1374 } else {
1375 require Encode;
1376 if (wantarray) {
1377 my @arr = $sth->$what;
1378 for (@arr) {
1379 defined && /[^\000-\177]/ && Encode::_utf8_on($_);
1380 }
1381 return @arr;
1382 } else {
1383 my $ret = $sth->$what;
1384 if (ref $ret) {
1385 for my $k (keys %$ret) {
1386 defined && /[^\000-\177]/ && Encode::_utf8_on($_) for $ret->{$k};
1387 }
1388 return $ret;
1389 } else {
1390 defined && /[^\000-\177]/ && Encode::_utf8_on($_) for $ret;
1391 return $ret;
1392 }
1393 }
1394 }
1395 }
1396
1397
1398=item *
1399
1400A large scalar that you know can only contain ASCII
1401
1402Scalars that contain only ASCII and are marked as UTF-8 are sometimes
1403a drag to your program. If you recognize such a situation, just remove
1404the UTF-8 flag:
1405
1406 utf8::downgrade($val) if $] > 5.007;
1407
1408=back
1409
393fec97 1410=head1 SEE ALSO
1411
72ff2908 1412L<perluniintro>, L<encoding>, L<Encode>, L<open>, L<utf8>, L<bytes>,
1413L<perlretut>, L<perlvar/"${^WIDE_SYSTEM_CALLS}">
393fec97 1414
1415=cut