concat Function
.NET Framework 4.5
Returns the concatenation of the arguments.
string concat(string, string, string*)
If an argument is not of type string, it is first converted to a string using the string() function and then the result of that conversion is evaluated.
Caution: |
|---|
| Stringconversions for node sets that are passed as arguments to this function may yield unexpected results. For more information, see string Function. |
This function is case-sensitive.
The following function call returns "abcdefg".
concat("abc", "d", "ef", "g")
The following function call returns "abc3efg".
concat("abc", 3, "ef", "g")
Build Date:
Caution: