string.right()
Returns a substring from end of the input string, with a length specified by the count argument.
string.right( count=number )
Returns: String
Examples
str="Save trees, save life on the earth";
writeDump(str.right(23));
Returns a substring from end of the input string, with a length specified by the count argument.
string.right( count=number )
Returns: String
str="Save trees, save life on the earth";
writeDump(str.right(23));