Core Function ChrWArray
From Sputnik Wiki
ChrWArray( <expression> )
Contents |
Description
Returns a string corresponding to an array UNICODE codes.
Parameters
expression
The array to get the codes from.
Return Value
Returns a string from the UNICODE codes in the array.
Remarks
None
Example
my $Ret = AscWArray( "Hello World" ); printr( $Ret ); $STR = ChrWArray($Ret); println("Back to string: " . $STR);