Thread Hash Größe ermitteln (13 answers)
Opened by bianca at 2013-05-07 19:02

pq
 2013-05-07 20:16
#167460 #167460
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
und was sagt:
Code (perl): (dl )
1
2
3
4
5
6
7
use 5.010;
my %FORM = ( a => "abc", b => "defg" );
say for %FORM;
say join "", %FORM;
my $x = length join "", %FORM;
say $x;
say length join "", %FORM;

?
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: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Hash Größe ermitteln