Write a HTML document in a file
htmlWrite(doc [, filename] [, indent]) htmlWrite(doc [, indent])
doc, a mlist typed XMLDoc
filename, a string
indent, a boolean
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.
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"); | ![]() | ![]() |
Version | Description |
5.5.0 | HTML features added. |