###Function###
StringLeft

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

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


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


###ReturnValue###
Returns a string containing the <i>leftmost</i> count 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, StringLen, StringLower, StringMid, StringRight, StringTrimLeft, StringTrimRight, StringUpper, StringCompare, StringReplace, StringSplit


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