Whatever message this page gives is out now! Go check it out!
Right(string, count)Parameter | Description |
string | A string or a variable that contains one. |
count | A positive integer that specifies the maximum number of characters to return. |
<cfscript>
string="The quick brown fox jumps over the lazy dog"
count=8
writeOutput(Right(string,count)) // lazy dog
</cfscript>