Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.1 - Français

Change language to:
English - 日本語 - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Aide de Scilab >> Gestion des fichiers XML > xmlRemove

xmlRemove

Remove an element or a list of elements from their parents

Calling Sequence

xmlRemove(elems)

Arguments

elems

elems, a XMLElem or a XMLSet (result of XPath query) or a XMLlist (a children list)

Description

Detach one or several elements from their parents. The detached elements are definitly lost.

Examples

doc = xmlReadStr("<root><a>Hello</a><b>Scilab</b><a>World</a></root>");

// Remove all the <a>
xp = xmlXPath(doc, "//a");
xmlRemove(xp);
xmlDump(doc)
xmlDelete(doc);

// Remove the first element
doc = xmlReadStr("<root><a>Hello</a><b>Scilab</b><a>World</a></root>");
xmlRemove(doc.root.children(1));
xmlDump(doc)

//Remove all the root children
xmlRemove(doc.root.children);
xmlDump(doc)

xmlDelete(doc);

See Also

  • XMLObjects — Describe the properties of the different XML objects

History

VersionDescription
5.4.0 XML module introduced.
Report an issue
<< xmlRelaxNG Gestion des fichiers XML xmlSchema >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Thu Oct 02 13:54:34 CEST 2014