$strConcat = Concat (<String1>,<String2>,
...)
Appends all given
strings together. Multiple strings can be specified.
Parameters
<String1>,<String2>,
... The strings which are to be appended.
Return Value
Remarks
- At least two
strings should be specified.
Example
$Str = "Hello"
$NewStr = Concat($Str, ", World")
- $NewStr now
contains "Hello, World".