Thread Hashes zusammenlegen (4 answers)
Opened by bloonix at 2006-01-11 18:47

Ronnie
 2006-01-11 18:56
#61675 #61675
User since
2003-08-14
2022 Artikel
BenutzerIn
[default_avatar]
Zuweisung in einem Listen-Kontext wäre so eine Möglichkeit:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl

use strict;
use warnings;

use Data::Dumper;

my %color1 = ( blue => '#00f', red => '#f00');
my %color2 = ( pink => '#f0f', yel => '#ff0');

%color1 = (%color1, %color2);

print Dumper \%color1;;
\n\n

<!--EDIT|Ronnie|1136998634-->

View full thread Hashes zusammenlegen