stri_enc_nfc(str)stri_enc_nfd(str)
stri_enc_nfkd(str)
stri_enc_nfkc(str)
stri_enc_nfkc_casefold(str)
stri_enc_isnfc(str)
stri_enc_isnfd(str)
stri_enc_isnfkd(str)
stri_enc_isnfkc(str)
stri_enc_isnfkc_casefold(str)
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.
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
Character Model for the World Wide Web 1.0:
Normalization -- W3C Working Draft,
Normalization -- ICU User Guide,
Unicode Equivalence -- Wikipedia,
stringi-encoding