in reply to Re: Dynamically parse BibTeX and create hash of hash
in thread Dynamically parse BibTeX and create hash of hash
Desired output (during iteration)for $i (sort keys(%bibliography)){ print "$i", "\n"; #print "$i ", Dumper ($bibliography{"$i"}); for $j (sort keys ($i)){ print "$j\n"; } }
Or is there any better way (structure) to strong this ? Thank you$VAR1 = { 'Forrest1996' => { 'abstract' => 'Abstract goes here', 'author' => 'Forrest, Stephanie and Hofme +yr, Steven A. and Anil, Somayaji', 'title' => '{Computer immunology}', 'year' => '1996' }, 'Lee2000a' => { 'abstract' => 'Abstract goes here', 'author' => 'Lee, Wenke and Stolfo, Salvator +e J', 'title' => '{Data mining approaches for intr +usion detection}', 'year' => '2000' }, };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Dynamically parse BibTeX and create hash of hash
by Anonymous Monk on Dec 07, 2012 at 22:03 UTC |