Forum Moderators: phranque
1) Transform with XSLT.
2) Walk through the nodes and parse out.
2) Find/replace/ strip out tags.
Any scripts or software available to make things easier?
But if you only have a few nodes, just use PHP parser... somewhat easier.
oh I forgot... you need to install XSLT extension on your server if you want to output HTML by combining XML and XSLT stylesheet. Otherwise, the client browser must support XSLT.
For PHP [php.net] see the docs for its XML parser functions [php.net] and XSLT functions [php.net].
For Perl [perl.com] have a look at XML::SAX [search.cpan.org], XML::GDOME::XSLT [search.cpan.org], XML::GDOME [search.cpan.org], XML::Simple [search.cpan.org], XML::XPath [search.cpan.org], and hundreds of other modules.
Andreas