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...") |
|||
Line 1: | Line 1: | ||
+ | {{ZUMLReferencePageHeader}} | ||
+ | |||
{{versionSince| 8.0.0}} | {{versionSince| 8.0.0}} | ||
Line 13: | Line 15: | ||
${'Hi, ' += firstname += ' ' += lastname} | ${'Hi, ' += firstname += ' ' += lastname} | ||
</source> | </source> | ||
+ | |||
+ | |||
+ | =Version History= | ||
+ | {{LastUpdated}} | ||
+ | {| border='1px' | width="100%" | ||
+ | ! Version !! Date !! Content | ||
+ | |- | ||
+ | | 8.0.0 | ||
+ | | | ||
+ | | | ||
+ | |} | ||
+ | |||
+ | {{ZUMLReferencePageFooter}} |
Latest revision as of 05:06, 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}
Version History
Version | Date | Content |
---|---|---|
8.0.0 |