Concat (Tag-based PE function)
- Last UpdatedOct 04, 2024
- 1 minute read
- PI System
- PI Server 2023
- PI Server
Concatenate two or more strings.
Syntax
Concat(s1, s2[, ... sn])
Arguments
s1, s2, sn
Must be character strings, or expressions yielding character strings.
Returns
The character strings, concatenated together. This function does not insert blanks between its arguments. To include a space in the concatenated string, add an argument consisting of a string that is a single space enclosed in double quotes..
Note: Consider using Text, which is more general and more precise in many cases than Concat.
Example
Concat("shut", "down") = "shutdown"