###Function###
StringCompare

###Description###
Compares two strings with options.

###Syntax###
StringCompare ( "string1", "string2" [, casesense] )


###Parameters###
@@ParamTable@@
string1
	The first string to evaluate.
string2
	The second string to evaluate.
casesense
	[optional] Flag to indicate if the operations should be case sensitive.
	0 = not case sensitive, using the user's locale (default)
	1 = case sensitive
	2 = not case sensitive, using a basic/faster comparison
@@End@@


###ReturnValue###
@@ReturnTable@@
0	string1 and string2 are equal
> 0	string1 is greater than string2
< 0	string1 is less than string2
@@End@@



###Remarks###
None.


###Related###
StringInStr, StringLeft, StringLen, StringLower, StringMid, StringRight, StringTrimLeft, StringTrimRight, StringUpper


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