↧
Answer by JZ. for XML::Smart Parser in Perl
change: my @Id = $results->{eSearchResult}{IdList}{Id}{'@'};to: my @Id = $results->{eSearchResult}{IdList}{Id}('@');
View ArticleAnswer by Quentin for XML::Smart Parser in Perl
The first thing you have done wrong is to comment out use strict, the second is to use -w instead of use warnings.With strict turned on, perl will report:Bareword "XML::Parser" not allowed while...
View ArticleXML::Smart Parser in Perl
I'm continuing to work out of an outdated bioinformatics book and I'm attempting to use the XML::Smart Module. I suspect the module's methods have changed over the course of 6 years and I'm...
View Article