Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

The String Concatenation: Difference between revisions

From Catglobe Wiki
Cg_pham (talk | contribs)
No edit summary
Cg_pham (talk | contribs)
No edit summary
Line 1: Line 1:
[[Category:Operators]]
[[Category:Operators]]

{{HelpFiles}}


===The String Concatenation===
===The String Concatenation===

Revision as of 07:06, 14 December 2011



The String Concatenation

CGS uses operator ‘+’ for concatenating string expressions. When the operator ‘+’ is used between a string and a number expression, the number expression will be converted to a string and then concatenated to the string expression.

For example, if we have an expression: “1” + 6, its value is a string: “16”.