Schrift
Wiki:Tipp zum Debugging: use Data::Dumper; local $Data::Dumper::Useqq = 1; print Dumper \@var;
[thread]8085[/thread]

xml file parsen

Leser: 4


<< >> 4 Einträge, 1 Seite
paidopoieo
 2006-06-15 20:19
#67391 #67391
User since
2005-12-02
96 Artikel
BenutzerIn
[default_avatar]
hi,
hab noch ein anderes problem, versuch da ein zweites xml file zu parsen:
ich brauche von dort den Inhalt des TaxId attribut:

xml:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE eSummaryResult PUBLIC "-//NLM//DTD eSummaryResult, 11 May 2002//EN" "http://www.ncbi.nlm.nih.gov/entrez/query/DTD/eSummary_041029.dtd">
<eSummaryResult>

<DocSum>
<Id>29427659</Id>
<Item Name="Caption" Type="String">P81928</Item>
<Item Name="Title" Type="String">RPII140-upstream gene protein</Item>
<Item Name="Extra" Type="String">gi|29427659|sp|P81928|140U_DROME[29427659]</Item>
<Item Name="Gi" Type="Integer">29427659</Item>
<Item Name="CreateDate" Type="String">2003/03/28</Item>
<Item Name="UpdateDate" Type="String">2006/04/04</Item>
<Item Name="Flags" Type="Integer">0</Item>
<Item Name="TaxId" Type="Integer">7227</Item>
<Item Name="Status" Type="String">live</Item>
<Item Name="ReplacedBy" Type="String"></Item>
<Item Name="Comment" Type="String"><![CDATA[ ]]></Item>
</DocSum>


</eSummaryResult>


Codefragment:

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 my $twig= XML::Twig->new(

TwigHandlers => {

Id => \&id_Tag

}
);


#actually parse the file
$twig->parsefile($xml_file) or die "cannot parse [$xml_file]: $!";



###########################################
sub id_Tag {
###########################################
my($t, $idTag)= @_;

my $id = $idTag->first_child('Item');
$idText = $id->{'att'}->{'TaxId'};
print "TAX_ID: ",$idText,"\n";
# Release memory of processed tree up to here
$t->purge();
}


mit der fehlermeldung:
Code: (dl )
Use of uninitialized value


sorry, komme aber echt nicht weiter....
renee
 2006-06-15 20:29
#67392 #67392
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 my $twig= XML::Twig->new(
TwigHandlers => {
item => \&id_Tag
}
);

###############################
sub id_Tag {
###############################
my($t, $idTag)= @_;

return unless($idTag->{att}->{Name} eq 'TaxId');
$idText = $idTag->text();
print "TAX_ID: ",$idText,"\n";
# Release memory of processed tree up to here
$t->purge();
}
\n\n

<!--EDIT|renee|1150389191-->
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/
paidopoieo
 2006-06-15 23:00
#67393 #67393
User since
2005-12-02
96 Artikel
BenutzerIn
[default_avatar]
danke renee,
funktioniert super.....
vayu
 2006-06-15 23:02
#67394 #67394
User since
2005-01-13
782 Artikel
BenutzerIn
[default_avatar]
schau dir auch mal diesen thread dazu an

http://board.perl-community.de/cgi-bin....;t=2647

den untersten post
<< >> 4 Einträge, 1 Seite



View all threads created 2006-06-15 20:19.