###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.
StringTrimRight($str, $n) is functionally equivalent to StringLeft($str, StringLen($str) - $n)

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


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