&&concatenate

From m204wiki
Revision as of 02:09, 25 August 2022 by Ekern (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
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