11.6. WMLScript String Operators - Concatenating Strings
The + operator has two uses in WMLScript. One use is to calculate the addition result of two numbers. We have seen how to do this earlier. Another use is to concatenate two strings. If both operands are numeric values, the + operator will act as the addition operator; if any one of the operands is a string, the + operator will act as the string concatenation operator. For example:
x
= 1 + 1;
y = 1 + "1";
After executing the above script, x has the integral value 2 and y has the string value "11".
Like the + operator, the += operator can also be used for both addition and string concatenation. The script below demonstrates its use:
var
z = "WML Tutorial and ";
z += "WMLScript Tutorial";
After executing the above script, z contains the string "WML Tutorial and WMLScript Tutorial". The above script is equivalent to the one below:
var
z = "WML Tutorial and ";
z = z + "WMLScript
Tutorial";
Previous Page | Page 23 of 71 | Next Page |
- 1. WMLScript Introduction
- 2. Hello World WMLScript Example
- 3. Compiling WMLScript Code
- 4. WMLScript Language Rules
- 5. Defining WMLScript Functions
- 6. Calling WMLScript Functions
- 7. WMLScript Variables
- 8. WMLScript Data Types
- 9. WMLScript Variables Vs WML Variables
- 10. Passing Arguments to Functions By Value and By Reference
- 11. WMLScript Operators
- 12. WMLScript Conditional Statements
- 13. WMLScript Looping Statements
- 14. WMLScript Standard Libraries Overview
- 15. WMLScript WMLBrowser Standard Library
- 16. WMLScript Dialogs Standard Library
- 17. WMLScript String Standard Library
- 18. WMLScript Float Standard Library
- 19. WMLScript Lang Standard Library
- 20. WMLScript URL Standard Library
- 21. WMLScript Example: Validating Form Data