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
 +
| &nbsp;
 +
| &nbsp;
 +
|}
 +
 +
{{ZUMLReferencePageFooter}}

Latest revision as of 05:06, 26 November 2020


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.