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 > htmlWrite

htmlWrite

Write a HTML document in a file

Calling Sequence

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

Arguments

doc

doc, a mlist typed XMLDoc

filename

filename, a string

indent

indent, a boolean

Description

Write a HTML 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 = htmlRead("http://www.scilab.org");
htmlWrite(doc, TMPDIR+"/scilab.html", %f);

// Now we open the previous file, modify it and save it
doc1 = htmlRead(TMPDIR+"/scilab.html");
xp = xmlXPath(doc1, "//title");
e = xp(1);
e.content = "Hello Scilab World";
htmlWrite(doc1);

// Now we check that the modification has been done
doc2 = htmlRead(TMPDIR+"/scilab.html");
xp = xmlXPath(doc2, "//title");
xp(1).content

xmlDelete("all");

See Also

History

VersionDescription
5.5.0 HTML features added.
Report an issue
<< htmlReadStr Gestion des fichiers XML xmlAddNs >>

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