###Function###
StringMid

###Description###
Extracts a number of characters from a string.


###Syntax###
StringMid ( "string", start [, count] )


###Parameters###
@@ParamTable@@
string
	The string to evaluate.
start
	The character position to start.  (1 = first character)
count
	[optional] The number of characters to extract. By default the entire remainder of the string.
@@End@@


###ReturnValue###
Returns the extracted string.


###Remarks###
If <i>start</i> is out-of-bounds, an empty string is returned.  If <i>start</i> is valid but count is out-of-bounds, the entire remainder of the string is returned.


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


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