[
Lists Home |
Date Index |
Thread Index
]
- From: Matt Sergeant <matt.sergeant@ericsson.com>
- To: Mallikarjuna Sangappa <malliks@rocketmail.com>
- Date: Tue, 08 Jun 1999 17:28:46 +0100
Mallikarjuna Sangappa wrote:
>
> Hi All,
>
> This is very urgent. Is there any program or tool
> which converts an XML document to ascii text file.
> Thanks in advance.
Have you tried `cat` ? ;-)
Your easiest option might be perl (for various values of "might").
Here's a one liner:
perl -MXML::Parser -e "XML::Parser->new(Handlers=> {Char => sub {print
$_[1]}})->parse(*STDIN)" < xmlfile
Which simply strips all the tags away. That is what you want, right?
Matt.
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
|