&&concatenate: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Created page with "__TOC__ {| |width="50%"| '''Action:''' |width="50%"| <span class="f_Para">Concatenate and return the function's arguments. </span> <span class="f_Para">If fewer than two argu...")
 
(No difference)

Latest revision as of 02:09, 25 August 2022

Action:

Concatenate and return the function's arguments.

If fewer than two arguments are specified, an error is issued.

Syntax:

&&concatenate(str1,str2[,str3] ...

where the str arguments observe the rules for &&function string arguments.

For example, the following fragment would display: abc123hi

set &hello = 'hi'   set &result = &&concatenate('a', 'b', "c", 1,2,3,&hello) echo &result 

Introduced: Build 58