- or download this
my $country = $card->country;
$country = $country eq 'gbr' ? '' : uc "[$country]" if $country;
- or download this
my ($country) = map {$_ and $_ eq 'gbr' ? '' : uc "[$_]"} $card->count
+ry;
- or download this
my ($country) = map $_ && ($_ eq 'gbr' ? '' : uc "[$_]"), $card->count
+ry;