###Function###
StringRight

###Description###
Returns a number of characters from the right-hand side of a string.

###Syntax###
StringRight ( "string", count )


###Parameters###
@@ParamTable@@
string
	The string to evaluate.
count
	The number of characters to get.
@@End@@

###ReturnValue###
Returns a string containing the rightmost <em>count</em> characters of the string.


###Remarks###
If <em>count</em> exceeds string length, the entire string is returned.
If <em>count</em> is negative, an empty string is returned.


###Related###
StringCompare, StringInStr, StringLeft, StringLen, StringLower, StringMid, StringReplace, StringSplit, StringTrimLeft, StringTrimRight, StringUpper


###Example###
@@IncludeExample@@
