###Function###
StringCompare

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

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


###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.
		$STR_NOCASESENSE (0) = not case sensitive, using the user's locale (default)
		$STR_CASESENSE (1) = case sensitive
		$STR_NOCASESENSEBASIC (2) = not case sensitive, using a basic/faster comparison
	Constants are defined in StringConstants.au3
@@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@@
