###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 <i>count</i> characters of the string.


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

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


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