ChrStringToUnicode

Converts an ANSI string to a Unicode string.

Syntax:

ChrStringToUnicode( string )

Parameters:

(s) string: specifies a string.

Returns:

(s) Unicode-string: a Unicode string.

 
Example:
; Step through this code in WinBatch Studio to see the variable str
; change type from String to String_Unicode
str = "Hello"
str = ChrStringToUnicode(str)
See Also:

ChrUnicodetoString