right
Description
Returns count number of characters starting from the right side of string , where count and string are the arguments to the function.
Syntax
right( string, charCount )
Examples
right("hello", 2) //returns "lo" right("filename.pdf", 3) //returns "pdf"right("hello", 0) //returns ""