Help for this page

Select Code to Download


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