Gets a specified number of characters from a string, beginning at the right.Returns the specified number of characters from the end (or right side) of the specified string.
Right(string, count)
<cfscript>
string="The quick brown fox jumps over the lazy dog"
count=8
writeOutput(Right(string,count)) // lazy dog
</cfscript>
Sign in to your account