Help for this page
my $country = $card->country; $country = '' if $country eq 'gbr'; $country = uc("[$country]") if $country;
my $country = $card->country; if ($country and $country ne 'gbr') { ... } else { $country = ''; }