Converts an array of integer numbers into a string containing their equivalent Unicode characters
Class: String
Parameters: array – An array of integer numbers
Syntax: $returnString=$chars(array)
Returns: A string containing the Unicode characters equivalent to the values of array
Remarks: None
Example:
//Example for the string $chars method
array MyArray //Declare an integer array
MyArray[0]=65 //Set first element
MyArray[1]=66 //Set second element
MyArray[2]=67 //Set third element
$s=$chars(MyArray) //Result (= ‘ABC’)
message(“Values 65, 66 & 67 converts to “ + $s) //Display results message
See Also: $char