Function | Meaning |
---|---|
fn:codepoints-to-string |
Creates an xs:string from a sequence of Unicode
code points. |
fn:string-to-codepoints |
Returns the sequence of Unicode code points that constitute an
xs:string . |
fn:codepoints-to-string
($arg
as
xs:integer*
) as
xs:string
Summary: Creates an xs:string
from a sequence of
[The Unicode Standard] code points. Returns
the zero-length string if $arg
is the empty sequence.
If any of the code points in $arg
is not a legal XML
character, an error is raised [err:FOCH0001].
fn:string-to-codepoints
($arg
as
xs:string?
) as
xs:integer*
Summary: Returns the sequence of [The
Unicode Standard] code points that constitute an
xs:string
. If $arg
is a zero-length
string or the empty sequence, the empty sequence is returned.
fn:string-to-codepoints("Thérèse")
returns the
sequence (84, 104, 233, 114, 232, 115, 101)