Extracts the y first characters from the String from right.
Right( x,y )
x | The string to extract characters from |
---|---|
y | How many characters to extract from the string (going from the right) |
String
Right( "abcdef",3 ) // Returns "def" Right( "unhgjdssasdlkweuixcna",5 ) // Returns "ixcna"