I'm developing an android application, and I would like to delete a small content in my XML file in my application's code. I would like to delete the content below:
<pma:structure_schemas>
<pma:database name="test" collation="latin1_swedish_ci" charset="latin1">
<pma:table name="agenda">
CREATE TABLE `agenda` (
`id` int(2) NOT NULL AUTO_INCREMENT,
`title` varchar(60) NOT NULL,
`description` varchar(1000) NOT NULL,
`town` varchar(30) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
</pma:table>
</pma:database>
</pma:structure_schemas>
Do you have any idea about how to do ?