From http://www.w3schools.com (Copyright Refsnes Data)
Complete WMLScript String Library
The trim() function returns a string without leading and trailing spaces.
| n = String.trim(string) |
| Part | Description |
|---|---|
| n | The string returned from the function |
| string | A string |
| var a = String.trim(" Visit W3Schools "); |
| a = "Visit W3Schools" |
Complete WMLScript String Library
From http://www.w3schools.com (Copyright Refsnes Data)