Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.2 - English

Change language to:
Français - 日本語 - 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

Scilab Help >> XML Management > xmlWrite

xmlWrite

Write a XML document in a file

Syntax

xmlWrite(doc [, filename] [, indent])
xmlWrite(doc [, indent])

Arguments

doc

doc, a mlist typed XMLDoc

filename

filename, a string

indent

indent, a boolean

Description

Write a XML document in a file with the given filename or with the document url. If indent is true, then the document will be indented, by default indent is true.

Examples

doc = xmlReadStr("<root><a att=""foo"" rib=""bar""><b>Hello</b></a></root>");
xmlWrite(doc, TMPDIR+"/foo.xml", %f);

// Now we open the previous file, modify it and save it
doc1 = xmlRead(TMPDIR+"/foo.xml");
doc1.root.children(1).name = "newName";
xmlWrite(doc1);

// Now we check that the modification has been done
doc2 = xmlRead(TMPDIR+"/foo.xml");
doc2.root.children(1).name

xmlDelete("all");

See also

History

VersionDescription
5.4.0 XML module introduced.
Report an issue
<< xmlValidate XML Management xmlXPath >>

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 Feb 14 14:57:21 CET 2019