Scilab-Branch-6.1-GIT
- 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
xmlRemove
要素または要素のリストを親から削除する
呼び出し手順
xmlRemove(elems)
引数
- elems
elems, XMLElem または XMLSet (XPathクエリの結果) またはXMLlist (子のリスト)
説明
親から一つまたは複数の要素を分離します. 分離された要素は無条件に失われます.
例
doc = xmlReadStr("<root><a>Hello</a><b>Scilab</b><a>World</a></root>"); // <a>を全て削除 xp = xmlXPath(doc, "//a"); xmlRemove(xp); xmlDump(doc) xmlDelete(doc); // 最初の要素を削除 doc = xmlReadStr("<root><a>Hello</a><b>Scilab</b><a>World</a></root>"); xmlRemove(doc.root.children(1)); xmlDump(doc) // ルートの子を全て削除 xmlRemove(doc.root.children); xmlDump(doc) xmlDelete(doc);
参照
- XMLObjects — 異なるのXMLオブジェクトのプロパティを記述する
履歴
バージョン | 記述 |
5.4.0 | XMLモジュールが導入されました. |
Report an issue | ||
<< xmlRelaxNG | XML Management | xmlSchema >> |