I am trying to print out my Hash Keys in Perl, one per line. How would I go about doing this?
Does this do it for you?
print "$_\n" for keys %hash;
Short version:
$, = "\n";
print keys %hash;
Or inside a larger script:
{
local $, = "\n";
print keys %hash;
}
To put it in a variable, for printing in a message box in accordance to your comments:
my $var = join "\n", keys %hash;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With