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