String Concatenation

From Documentation
Revision as of 05:05, 26 November 2020 by Hawk (talk | contribs) (Created page with "{{versionSince| 8.0.0}} String concatenation has been introduced to make it easy to construct strings within EL expressions. <source lang='xml'> <zscript><![CDATA[ String...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Since 8.0.0

String concatenation has been introduced to make it easy to construct strings within EL expressions.

    <zscript><![CDATA[

String firstname = "Hawk";
String lastname = "Chen";

    ]]></zscript>

${'Hi, ' += firstname += ' ' += lastname}