From http://www.w3schools.com (Copyright Refsnes Data)
Complete WMLScript String Library
The length() function returns the length of a string.
| n = String.length(string) |
| Part | Description |
|---|---|
| n | The length of the string |
| string | A string |
|
var a = String.length(""); var b = String.length("Hello world"); var c = String.length(23.4); |
|
a = 0 b = 11 c = 4 |
Complete WMLScript String Library
From http://www.w3schools.com (Copyright Refsnes Data)