concat/2—concatenate a list of strings

The concat/2 function concatenates a list of strings.The syntax for concat/2 function is as follows:

concat($STRLIST,$STR)
$STR=concat($STRLIST)

concat/2 arguments

Argument

Mode

Type

Description

$STRLIST

Input

LIST_OF STRING

List of strings to be concatenated

$STR

Output

STRING

The result of concatenating the specified strings

concat/2 example

concat(['Duration: ',inttostring($E.duration),' seconds'],$E.msg);
Was this page helpful? Yes No Submitting... Thank you

Comments