My goal was to convert a very large XML file to CSV or tab delimited text.
I used these to parse XML file:
my $tpp = XML::TreePP->new();
my $tree = $tpp->parsefile("$fileName");
my $text = Dumper( $tree );
but the output was all in JSON format.
Is it possible for perl DUMPER to output flat files in csv or tab
delimited formats?
My goal was to convert a very large XML file to CSV or tab delimited text.
I used these to parse XML file:
my $tpp = XML::TreePP->new();
my $tree = $tpp->parsefile("$fileName");
my $text = Dumper( $tree );
but the output was all in JSON format.
Is it possible for perl DUMPER to output flat files in csv or tab delimited formats?
My goal was to convert a very large XML file to CSV or tab delimited text.
I used these to parse XML file:
my $tpp = XML::TreePP->new();
my $tree = $tpp->parsefile("$fileName");
my $text = Dumper( $tree );
but the output was all in JSON format.
Is it possible for perl DUMPER to output flat files in csv or tab delimited formats?
Thanks!
j
Joe <julian...@gmail.com> writes:
My goal was to convert a very large XML file to CSV or tab delimited text. I used these to parse XML file:
my $tpp = XML::TreePP->new();
my $tree = $tpp->parsefile("$fileName");
my $text = Dumper( $tree );
but the output was all in JSON format.
Is it possible for perl DUMPER to output flat files in csv or tabData::Dumper's output is not JSON. It's Perl syntax. It doesn't seem
delimited formats?
to have any options for producing something else.
My goal was to convert a very large XML file to CSV or tab delimited text.
I used these to parse XML file:
my $tpp = XML::TreePP->new();
my $tree = $tpp->parsefile("$fileName");
my $text = Dumper( $tree );
but the output was all in JSON format.
Is it possible for perl DUMPER to output flat files in csv or tab delimited formats?
Thanks!
j
Sysop: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 546 |
Nodes: | 16 (0 / 16) |
Uptime: | 168:09:05 |
Calls: | 10,385 |
Calls today: | 2 |
Files: | 14,057 |
Messages: | 6,416,545 |