Thread Hash Größe ermitteln
(13 answers)
Opened by bianca at 2013-05-07 19:02
say do { no warnings; length join "", %FORM };
oder say do { no warnings; my $sum; $sum += length for %FORM; $sum }; vielleicht interessiert dich aber auch Devel::Size Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |