@HspConcat

This function returns a single string by concatenating the values passed to it.

Syntax

@HspConcat(StringArray)
Parameter Description
StringArray An array of strings.

Note

The return value is one string.

Example

This example gets all children of "Element Changes" in log.

@return(@HspConcat(@name(@list("1st Element Change",",","2nd Element Change"))));

This returns ("1st Element Change","2nd Element Change")