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, O'Reilly Media. 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 Type| Name | Type | Description |
$arg |
xs:integer* |
a sequence of Unicode code points |
| return value |
xs:string |
Examples| XQuery 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 |
|