Tamino XML Server Version 9.7
 —  XQuery 4 Reference Guide  —

fn:string-join

Return concatenation of string sequence.


Syntax

fn:string-join(string* $stringSequence, string $separator) => string?

Top of page

Description

This function returns a possibly empty string that is created by concatenating the members of $stringSequence using the value of $separator. If the value of $separator is a string of length zero, the members of $stringSequence are concatenated without a separator.

Top of page

Arguments

$stringSequence

string value

$separator

string value

Top of page

Examples

Top of page

Related Syntax Constructs

The following construct(s) refer to this construct:

Top of page