stri_enc_nf: Perform or Check For Unicode Normalization

Description Usage Arguments Details Value References See Also

Description

These functions convert strings to NFC, NFKC, NFD, NFKD, or NFKC_Casefold Unicode Normalization Form or check whether strings are normalized.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19

Arguments

str

character vector to be encoded

Details

Unicode Normalization Forms are formally defined normalizations of Unicode strings which e.g. make possible to determine whether any two strings are equivalent. Essentially, the Unicode Normalization Algorithm puts all combining marks in a specified order, and uses rules for decomposition and composition to transform each string into one of the Unicode Normalization Forms.

The following Normalization Forms (NFs) are supported:

Note that many W3C Specifications recommend using NFC for all content, because this form avoids potential interoperability problems arising from the use of canonically equivalent, yet different, character sequences in document formats on the Web. Thus, you will rather not use these functions in typical stringi processing activities. Most often you may assume that a string is in NFC.

As usual in stringi, if the input character vector is in the native encoding, it will be converted to UTF-8 automatically.

Value

The stri_enc_nf* functions return a character vector of the same length as input (the output is always in UTF-8).

On the other hand, stri_enc_isnf* return a logical vector.

References

Unicode Normalization Forms – Unicode Standard Annex #15, http://unicode.org/reports/tr15

Character Model for the World Wide Web 1.0: Normalization – W3C Working Draft, http://www.w3.org/TR/charmod-norm/

Normalization – ICU User Guide, http://userguide.icu-project.org/transforms/normalization (technical details)

Unicode Equivalence – Wikipedia, http://en.wikipedia.org/wiki/Unicode_equivalence

See Also

Other encoding_normalization: stringi-encoding


stringi documentation built on May 2, 2019, 4:54 p.m.