Skip to content

Instantly share code, notes, and snippets.

@ytnobody
Created June 15, 2012 08:03
Show Gist options
  • Save ytnobody/2935308 to your computer and use it in GitHub Desktop.
Save ytnobody/2935308 to your computer and use it in GitHub Desktop.
ハッシュに配列を入れておいてその配列からJOIN
use strict;
my %hash = (
hoge => [ 1, 2, 3, 4 ],
fuga => [ 3, 4, 6, 8, 2 ],
piyo => [ 4, 6, 9, 2 ],
);
print join ', ', map { join ': ', @{$hash{$_}} } keys %hash;
@ytnobody
Copy link
Author

Data::Dumper要らなかったです><

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment