String Concatenation"

From Documentation
(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...")
(No difference)

Revision as of 05:05, 26 November 2020

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}