Thread HoH - kleines Problem
(4 answers)
Opened by toclim at 2010-12-15 14:02
Hallo zusammen,
ich habe mir im unten stehendem Script einen kleinen HoH erstellt. Ich würde mir gerne nur die Hash-Einträge in Zeile 23/24 "PrimaryUser" und "Typ" in eine Zeile packen und nicht so wie es unten dargestellt wird in zwei. Hat jemand eine Idee wie das geht? Code (perl): (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 #!/usr/bin/perl use warnings; use strict; use Data::Dumper; my %PurchPCHash = (); my $PC = "Computer_PC3850"; my $New_PurchaseDate = "24.01.2014"; my $PrimaryUser = "Max Mueller"; my $Typ = "Asus"; $PurchPCHash {$PC}= {"New_PurchaseDate" => "$New_PurchaseDate"}; .... .... .... $PurchPCHash {$PC }-> {"PrimaryUser"} = "$PrimaryUser"; $PurchPCHash {$PC }-> {"Typ"} = "$Typ"; print "Was hat mein HoH: \n\n",Dumper(\%PurchPCHash),"\n\n"; Gruss toclim Last edited: 2010-12-15 14:04:34 +0100 (CET) |