my $country = $card->country; $country = '' if $country eq 'gbr'; $country = uc("[$country]") if $country; #### my $country = $card->country; if ($country and $country ne 'gbr') { $country = uc("[$country]"); } else { $country = ''; }