Returns the character at the n'th position in the string
"string" - the string to extract the character value from.
n - the string position to extract the character from.
A scalar string containing a single character.
$string = "hello world"; for ($x = 0; $x < strlen($string); $x++) { print(charAt($string, $x) . " "); } println();
h e l l o w o r l d