TradeMUX SDK Documentation  1.0
TradeMUX SDK Documentation
int StringCompare ( string  string1,
string  string2,
bool  case_sensitive = true 
)

Compares two strings and returns the comparison result in form of an integer

Parameters
string1The first string
string2The second string
case_sensitiveCase sensitivity mode selection. If it is true, then "A">"a". If it is false, then "A"="a". By default the value is equal to true
Returns
-1 (minus one), if string1 smaller than string2, 0 (zero), if string1 == string2 and 1 (one), if string1 greater than string2