|
Newsletters
|
|
|
|
|
WMLScript Reference
WMLScript Reference
WMLScript > String > compare()
compare() - The compare Function
Usage: compare(string1, string2)
Description: The return value indicates the lexicographic relation of string1 to string2. The relation is based on the relation of the character codes in the native character set. The return value is -1 if string1 is less then string2, 0 if string1 is identical to string2 or 1 if string1 is greater than string2.
Example:var a = "Hello";
var b = "Hello";
var c = String.compare(a, b); // c = 0
var d = String.compare("Bye", "Jon"); // d = -1
var e = String.compare("Jon", "Bye"); // e = 1
Bookmark this page
|
|