codepoints-to-string
Creates a string from a sequence of Unicode code points
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.
Parameters |
Description |
---|---|
arg:integer() |
a sequence of Unicode code points |
Examples
XPath |
Results |
---|---|
codepoints-to-string((97, 32, 98, 32, 99)) |
a b c |
codepoints-to-string(97) |
a |
codepoints-to-string(()) |
zero-length string |