in reply to Re^9: Selecting DBin thread Selecting DB
my $tostring = join ', ', map @$_, @$TotalEmails; [download]
Too golfy ?
For a novice, probably so. But it is a nice, concise solution (++). OTOH I might just reach for List::Flatten (or List::Flatten::Recursive if $TotalEmails were to be any deeper).
use List::Flatten; my $tostring = join ',', flat @$TotalEmails; [download]
🦛