Core Function ChrWArray
From Sputnik Wiki
(Difference between revisions)
(Created page with "<pre> ChrWArray( <expression> ) </pre> === Description === Returns a string corresponding to an array UNICODE codes. === Parameters === ==== expression==== The array to get ...") |
m (1 revision) |
Revision as of 21:40, 11 August 2014
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);