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 <[email protected]> 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: | 715 |
| Nodes: | 16 (2 / 14) |
| Uptime: | 17:56:29 |
| Calls: | 12,103 |
| Calls today: | 3 |
| Files: | 15,004 |
| Messages: | 6,518,078 |