###Function###
StringTrimLeft

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

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


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


###ReturnValue###
Returns the string trimmed by <i>count</i> characters from the left.


###Remarks###
If <i>count</i> is out-of-bounds, an empty string is returned.
StringTrimLeft($str, $n) is functionally equivalent to StringRight($str, StringLen($str) - $n)

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


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