- or download this
$country = $country eq 'gbr' ? '' : uc "[$country]"
if $country;
- or download this
if ($country) {
$country = $country eq 'gbr' ? '' : uc "[$country]";
}
- or download this
my $country = '';
my $code = $card->country;
$country = "[\U$code]" unless $code eq 'gbr';