&&concatenate

From m204wiki
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