NormalizeNFD
Perform unicode normalization D on a string
Declaration
Source position: unicodedata.pas line 500
function NormalizeNFD(const AString: UnicodeString) : UnicodeString
; Overload;
function NormalizeNFD(const AStr: PUnicodeChar; ALength: SizeInt)
: UnicodeString; Overload;
Description
NormalizeNFD normalizes the string AString (or the alternate form using a null-terminated AStr with length Alength) to Unicode Normalization Form D. The resulting string can be used to determine equivalence of unicode strings.
See also
Name | Description |
---|---|
CanonicalOrder | Put unicode string in canonical order. |