Appends multiple strings to each other.
Syntax
StringConcat(String1 [, ... , StringN])
The syntax of the StringConcat function consists of the following parts:
Part |
Description |
---|---|
String1, ..., StringN |
The strings connected to each other. Permitted data structures are Scalar value, Data series und Data matrix. Supported data types are String. |
Remarks
The result always has the data type String.
The result is a string that occurs due to linking the individual strings together.
If one argument is a data series or data matrix, the calculation is performed on a per-element basis and the result is either a data series or a data matrix. If multiple arguments have the structure of a data series or data matrix, their number of rows or possibly number of columns must match.
Available in
FlexPro Basic, Professional, Developer Suite
Examples
StringConcat("Flex", "Pro") |
Results in "FlexPro". |
Dim signals = {"Voltage", "Current", "Power"} |
Results in {"Voltage from M101", "Current from M482", "Power from M712"}. |