Description

Converts an ANSI string to Unicode string.

Syntax

uniCodeString = ANSI_UNICODE(ansiString, delimiter)

Parameters

The function has the following parameters:

ParameterDescription
ansiStringThe ANSI string to convert to Unicode. This string will contain single-byte ANSI characters.
delimiterThe minimum delimiter value to use in the conversion.

Returns

A string containing two-byte UNICODE characters.

See also

UNICODE_ANSI

Example

declare function ANSI_UNICODE
*  \AE\ the registration trademark
ansi_char = \AE\ : @FM : @VM : @SVM
 
uniCodeString = ANSI_UNICODE(ansi_char, @VM)
  • No labels