##
'if ( $a ) { $combined .= "a=$a " }'
####
my $template = 'if ( $%s ) { $combined .= "%s=$%s " }';
eval sprintf $template, $_, $_, $_ for qw( a b c );
####
'$combined .= "%s=$%s " if $%s'
####
'$%s and $combined .= "%s=$%s "'