Concat
- Last UpdatedJan 11, 2023
- 1 minute read
- PI System
- PI Server 2024 R2
- PI Server
Concatenate two or more strings.
Syntax
Concat(s1, s2 [, ... sn])
Arguments
-
s1, ... 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 has a single space enclosed in double quotes.
Example
-
Concat("shut", "down")
[Returns "shutdown"]
-
Concat("shut ", "down")
[Returns "shut down"]