James wrote:
Hi All,
I am trying to process a XML file and print some info
but my script is not printing anything.
Please help
Here is my code
You don't use "use strict;" or "use warnings;". Shame on you, James!
It would have told you what the problem was.
use XML::Simple;
use Data::Dumper;
my $
Hi All,
I am trying to process a XML file and print some info
but my script is not printing anything.
Please help
Here is my code
use XML::Simple;
use Data::Dumper;
my $tempxml = "C:/temp/bom.xml";
my $bom = XMLin($tempxml);
my $itm =
$bom->{T_Stpo_Table}->{BOM_ITEM_API01}->{ITEM_NO};
my $co