Thread Größe eines Hash in Byte (16 answers)
Opened by bianca at 2010-12-17 14:37

topeg
 2010-12-17 14:45
#143658 #143658
User since
2006-07-10
2611 Artikel
BenutzerIn

user image
Du zählst nur die Anzahl der Schlüssel zu "$summe".

Ein Hash kann man auch wie ein Array handhaben:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl
use strict;
use warnings;

my %hash=qw(das 1 ist 2 ein 3 test 4);

my $size=0;
map{$size+=length($_)}%hash;

print "$size\n";

View full thread Größe eines Hash in Byte