in reply to join email lists with comma unless one list is empty

Maybe?

sub join_email_lists { return join(",", grep { length } @_); }

Replies are listed 'Best First'.
Re^2: join email lists with comma unless one list is empty
by Gulliver (Monk) on Jun 11, 2011 at 02:01 UTC

    Thank you. Very Perlish.

      This is the most perlish you can get :P
      sub join_email_lists { join ",", grep length, @_ }