Core Function ChrArray
From Sputnik Wiki
(Difference between revisions)
UberFoX (Talk | contribs)
(Created page with "<pre> ChrArray( <expression> ) </pre> === Description === Returns a string corresponding to an array ASCII codes. === Parameters === ==== expression==== The array to get the...")
Newer edit →
(Created page with "<pre> ChrArray( <expression> ) </pre> === Description === Returns a string corresponding to an array ASCII codes. === Parameters === ==== expression==== The array to get the...")
Newer edit →
Revision as of 18:43, 28 January 2013
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);