Difference between revisions of "Parser"
From ThorstensHome
(New page: There are two different approaches how to write a parser with KDE: * use a [http://doc.trolltech.com/4.4/qxmlinputsource.html QXMLInPutSource]. * use the DOM model. It is important to un...) |
m (1 revision(s)) |
Revision as of 09:10, 18 October 2008
There are two different approaches how to write a parser with KDE:
- use a QXMLInPutSource.
- use the DOM model.
It is important to understand that you cannot write an html parser using QXMLInPutSource unless you use strict XHTML. A line like
<body lang=DE link=blue vlink=purple bgcolor=#eeeeff>
stops a QXMLInPutSource-Parser completely because the quotation marks are missing.