fn:local-name

fn:local-name(
   [$arg as node()?]
) as xs:string

Summary

Returns the local part of the name of $arg as an xs:string that will either be the zero-length string or will have the lexical form of an xs:NCName.

If the argument is omitted, it defaults to the context node. If the context item is undefined an error is raised: [err:XPDY0002]. If the context item is not a node an error is raised: [err:XPTY0004].

If the argument is supplied and is the empty sequence, the function returns the zero-length string.

If the target node has no name (that is, if it is a document node, a comment, a text node, or a namespace node having no name), the function returns the zero-length string.

Otherwise, the value returned will be the local part of the expanded-QName of the target node (as determined by the dm:node-name accessor in Section 5.11 node-name Accessor[DM]. This will be an xs:string whose lexical form is an xs:NCName.

Parameters
arg The node whose local name is to be returned.

Example

xquery version "1.0-ml";
declare namespace a="a";

let $x := <a:hello/>
return
fn:local-name($x)

=> hello
Powered by MarkLogic Server | Terms of Use | Privacy Policy