local-name-from-QName
The local part of a QName
Description
The fn:local-name-from-QName function returns the local part of an xs:QName. If you want to retrieve the local part of an element or attribute name, you should consider using the fn:local-name function instead; it requires one less step
Parameters |
Description |
---|---|
arg:string() |
Examples
XPath |
Results |
---|---|
local-name-from-QName(QName(’http://datypic.com/prod’, ‘number’)) |
number |
local-name-from-QName(QName (‘’, ‘number’)) |
number |
local-name-from-QName( () ) |
() |