###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 <em>count</em> characters from the left.


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


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


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