WMLScript compare() Function
Complete WMLScript String Library
The compare() function compares two strings and returns a value that represents the result of the comparison.
The compare() function can return one of the following values:
- -1 (if string1 < string2)
- 0 (if string1 = string2)
- 1 (if string1 > string2)
Syntax
n = String.compare(string1, string2) |
Part |
Description |
n |
The integer returned from the function |
string1 |
A string |
string2 |
A string |
Example
var a = String.compare("world","world");
var b = String.compare("I","world");
var c = String.compare("world","I");
|
Result
Complete WMLScript String Library
Learn XML with <oXygen/> XML Editor - Free Trial!
|
|
oXygen helps you learn to define,
edit, validate and transform XML documents. Supported technologies include XML Schema,
DTD, Relax NG, XSLT, XPath, XQuery, CSS.
Understand in no time how XSLT and XQuery work by using the intuitive oXygen debugger!
Do you have any XML related questions? Get free answers from the oXygen
XML forum
and from the video
demonstrations.
Download a FREE 30-day trial today!
|
|