Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re^3: Dynamically parse BibTeX and create hash of hash

by Anonymous Monk
on Dec 07, 2012 at 22:03 UTC ( [id://1007831]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Dynamically parse BibTeX and create hash of hash
in thread Dynamically parse BibTeX and create hash of hash

Something like this? (untested)

for my $bibkey (sort keys %bibliography) { my $entry = $bibliography{$bibkey}; print "$bibkey:\n"; for my $key (sort keys %$entry) { print "\t$key => ", $entry->{$key}, "\n"; } }

Alternatively, $Data::Dumper::Sortkeys = 1;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1007831]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (7)
As of 2024-04-24 09:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found