###Function###
StringTrimRight

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

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


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

###ReturnValue###
Returns the string trimmed by count characters from the right.


###Remarks###
If count is out-of-bounds, an empty string is returned.
<a href="StringTrimRight.htm">StringTrimRight</a>($str, $n) is functionally equivalent to <a href="StringLeft.htm">StringLeft</a>($str, <a href="StringLen.htm">StringLen</a>($str) - $n)


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


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