Hi Heikki, i went through code spippet which is as below
use XML::Simple qw(:strict); my $filename = 'trial.xml'; my $library = XMLin($filename, ForceArray => 1, KeyAttr => {}, );
foreach my $reporter (@{$project->{name}}) { print $reporter->{title}->[0], "\n" }
so the above code prints all the "names" from the xml file , but how do i modify this to print details including systematicname, Activeseq,x,y, number and description which tab(\t) separated as i printed in the query, so do u have any idea,,,?
Because i want to match and print values of "x","y" and description with "t"
Rule of thumb. Never parse HTML or XML with REGEX. Use appropriate modules.