[Overview][Resource strings][Constants][Types][Procedures and functions][Index] Reference for unit 'unicodedata' (#rtl)

NormalizeNFD

Perform unicode normalization D on a string

Declaration

Source position: unicodedata.pas line 383

function NormalizeNFD(

  const AString: UnicodeString

):UnicodeString; overload;

function NormalizeNFD(

  const AStr: PUnicodeChar;

  ALength: SizeInt

):UnicodeString; overload;

Arguments

AString

  

Unicode string

Function result

Normalized form (D) of unicode string

Arguments

AStr

  

Null-terminated string with length specified in ALength.

ALength

  

Length of null-terminated string AStr.

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

CanonicalOrder

  

Put unicode string in canonical order.


Documentation generated on: Nov 14 2015