I need to remove a nested multilevel (unknown depth) tag from a XML file using QDomDocument. What is the proper way of doing this? Here is a sample of XML file
<A>
<B>
<C>
.............................
</C>
</B>
</A>
I need to remove a nested multilevel (unknown depth) tag from a XML file using QDomDocument. What is the proper way of doing this? Here is a sample of XML file
<A>
<B>
<C>
.............................
</C>
</B>
</A>
Copyright © 2021 Jogjafile Inc.
I would not even use
QDomDocument
, aka.QtXml
for this as the stream reader and writer classes are relatively simple to use in QtCore. Here goes my solution that could be further extended to support other things, too:QtCore
testin.xml
testout.xml
main.cpp
main.pro
Build and Run
QtXml
If you still insist on using
QtXml
for this simple task, you could do this:main.cpp
main.pro
Build and Run
Output