March 2002
Intermediate to advanced
400 pages
7h 56m
English
String operators provide the capability to connect string variables together (better known as concatenating). Two string operators are available to enable developers to concatenate strings together (see Table 11.6).
| Operation | WMLScript Operator | Description |
|---|---|---|
| Addition | + | Returns the sum of combining operands. It’s similar to the addition arithmetic operator, but in this case, the operands are strings. |
| Assignment with addition | += | Returns the sum of combining operands, and then assigns the new value to the original operand. It’s similar to the assignment with addition operator, but in this case, the operands are strings. |
To get an idea of how string ...
Read now
Unlock full access