Core Function AscArray
From Sputnik Wiki
(Difference between revisions)
UberFoX (Talk | contribs)
(Created page with "<pre> AscArray( <char> ) </pre> === Description === Returns an array of ASCII characters of a string. === Parameters === ==== string ==== The string to get the codes for. =...")
Newer edit →
(Created page with "<pre> AscArray( <char> ) </pre> === Description === Returns an array of ASCII characters of a string. === Parameters === ==== string ==== The string to get the codes for. =...")
Newer edit →
Revision as of 18:40, 28 January 2013
AscArray( <char> )
Contents |
Description
Returns an array of ASCII characters of a string.
Parameters
string
The string to get the codes for.
Return Value
Returns an array of the ASCII codes for each character in the string.
Remarks
None
Example
my $Ret = AscArray( "Hello World" ); printr( $Ret ); $STR = ChrArray($Ret); println("Back to string: " . $STR);