Tamino XML Server Version 9.7
 —  XQuery 4 Reference Guide  —

fn:concat

Returns the concatenation of the values of its arguments.


Syntax

fn:concat() => string
fn:concat(string? $string1) => string
fn:concat(string? $string1, string? $string2, ...) => string

Top of page

Description

This function concatenates the values of its arguments. It accepts zero or more xs:strings as arguments. In case of no arguments, the empty string is returned.

Top of page

Arguments

$string1, $string2, ...

string value

Top of page

Examples

Top of page

Related Syntax Constructs

The following construct(s) refer to this construct:

Top of page