Scilab-Branch-6.1-GIT
- Ajuda do Scilab
- XML Management
- htmlDump
- htmlRead
- htmlReadStr
- htmlWrite
- xmlAddNs
- xmlAppend
- xmlAsNumber
- xmlAsText
- xmlDelete
- xmlDocument
- xmlDTD
- xmlDump
- xmlElement
- xmlFormat
- xmlGetNsByHref
- xmlGetNsByPrefix
- xmlGetOpenDocs
- xmlGetValues
- xmlIsValidObject
- xmlName
- xmlNs
- XML Objects
- xmlRead
- xmlReadStr
- xmlRelaxNG
- xmlRemove
- xmlSchema
- xmlSetAttributes
- xmlSetValues
- xmlValidate
- xmlWrite
- xmlXPath
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
xmlAsText
Convert the result of a XPath query into a row of strings
Syntax
strings = xmlAsText(xp)
Arguments
- xp
xp, a XML mlist typed XMLSet or XMLList
- strings
strings, a single row of strings
Description
The result of a XPath query or the children of a node can be a set of XMLElements, so the aim of this function is to convert the contents of each nodes into a string.
Examples
doc = xmlReadStr("<root><a>Hello</a><a>Scilab</a><a>World</a></root>"); // Retrieve the content of the nodes with name equal to "a" xp = xmlXPath(doc, "//a/text()"); // convert the result into a row of strings data = xmlAsText(xp) xmlDelete(doc);
See also
- xmlXPath — Make a XPath query on a XML document
- xmlAsNumber — Convert the result of a XPath query into a row of numbers
- xmlName — Retrieve the name of the elements.
History
Versão | Descrição |
5.4.0 | XML module introduced. |
Report an issue | ||
<< xmlAsNumber | XML Management | xmlDelete >> |