Description
The fn:codepoints-to-string function creates a string from a sequence of Unicode code points. The $arg argument is a sequence of integers representing Unicode code point values.
This description is © Copyright 2007, Priscilla Walmsley. It is excerpted from the book XQuery by Priscilla Walmsley, O'Reilly, 2007. For a complete explanation of this function, please refer to Appendix A of the book. Arguments and Return TypeName | Type | Description |
$arg |
xs:integer* |
a sequence of Unicode code points |
return value |
xs:string |
ExamplesXPath Example | Results |
---|
codepoints-to-string((97, 32, 98, 32, 99)) |
a b c |
codepoints-to-string(97) |
a |
codepoints-to-string(()) |
zero-length string |
See AlsoHistory |
Recommended Reading:
|