Read a HTML stream from a local or distant file
doc = htmlRead(path [, encoding])
a string, the path to the file to read.
a string, the file encoding.
a mlist typed XMLDoc
Read and parse a HTML file. The returned document allows to access to the DOM tree which is kept in memory.
In general, a HTML file cannot be read with a XML parser because a HTML is rarely well-formatted, so a HTML parser is required and it is more compliant.
Once the HTML file is parsed, it can be seen as a XML file in memory, so usual operations can be done.
The encoding argument is used to precise the file encoding.
It is important to notice that the tree must be freed (to avoid memory leaks) with the function xmlDelete.
Version | Description |
5.5.0 | HTML features added. |