XQuery - 字符串函数
下表列出了 XQuery 提供的常用字符串操作函数。
先生编号 | 名称和描述 |
---|---|
1 | 字符串长度($string as xs:string) as xs:integer 返回字符串的长度。 |
2 | concat($input as xs:anyAtomicType?) as xs:string 返回连接的字符串作为输出。 |
3 | string-join($sequence as xs:string*, $delimiter as xs:string) as xs:string 返回由分隔符分隔的序列中的项目组合。 |