Returns the right n characters of "string"
"string" - the string to get the characters from.
n - number of characters to grab
A scalar string.
$string = "this is a test"; $right = right($string, 4); println("Right chars are: $right");
Right chars are: test