Help for this page

Select Code to Download


  1. or download this
    my $country = uc $card->country || ''; # make sure it is UC and define
    +d
    $country = '' if $country eq 'GBR';    # blat the Brits
    
  2. or download this
    my $def_country = 'GBR'
    my $country = uc $card->country || $def_country; # ensure UC & has a v
    +alue
    $country = $country eq 'GBR' ? '' : "[$country]" # blat brits, add [br
    +ackets]