Revision [1623]
This is an old revision of FunctionsXS made by DavidLee on 2010-12-06 10:53:01.
XS Functions
The following functions are built in to xmlsh, but need to be imported. They are not imported by default because of possible name collisions using these functions with no prefix. The intent of these functions is to provide convenient and efficient access to core "XDM" data types without having to use the XML Expression Syntax.
Importing
To use the XS commands you need to import them into either the global namespace or a local namespace.Its recommended that you use a local namespace so that there is less chance of name collisions.
To import into the xs namespace prefix
import commands xs=xs
To import into the global namespace
import commands xs
Functions are invoked using the Function Call Syntax
Function | Descripton |
---|---|
integer | Casts argument as an xs:integer |
string | Casts argument(s) as an xs:string |
attribute | Create an attribute node |
element | Create an element node |
See Also Functions
See Also StAX Functions
See Also Commands
See Also Java Objects