📅  最后修改于: 2020-11-09 05:43:29             🧑  作者: Mango
下表列出了XQuery提供的常用字符串操作功能。
Sr.No | Name & Description |
---|---|
1 |
string-length($string as xs:string) as xs:integer Returns the length of the string. |
2 |
concat($input as xs:anyAtomicType?) as xs:string Returns the concatenated string as output. |
3 |
string-join($sequence as xs:string*, $delimiter as xs:string) as xs:string Returns the combination of items in a sequence separated by a delimiter. |