Microsoft XML SDK 2.6 - XSLT Reference

concat Function

Returns the concatenation of the arguments.

string concat(string, string, string*)

Remarks

If an argument is not of type string, it is first converted to a string and then evaluated.

Example

The following function call returns "abcdefg":

concat("abc", "d", "ef", "g")

The following function call returns "abc3efg":

concat("abc", 3, "ef", "g")

See Also

XML Data Types Reference