Removing specific element from xml using sax with xerces library in c++

TrAlfandkl

New Member
My problem is that I want to remove lastfiles and all it's child element using sax with the API of Xerces in c++ language??\[code\]<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE config><config datecreated="20011210"> <user> John Smith </user> <login>jsmith</login> <password>topsecret</password> <lastfiles> <lastfile timestamp="20011210T1002">accounts.txt</lastfile> <lastfile timestamp="20011190T1132">/home/jsmith/docs/letter.doc</lastfile> </lastfiles></config>\[/code\]
 
Back
Top