String Concatenation

From Documentation
Revision as of 05:06, 26 November 2020 by Hawk (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


String Concatenation


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}


Version History

Last Update : 2020/11/26


Version Date Content
8.0.0    



Last Update : 2020/11/26

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.