&&concatenate

From m204wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
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