Help for this page

Select Code to Download


  1. or download this
    foreach (@CHOICE) {
        if (defined && m/2001\sCensus\sOutput\sArea/){
    
  2. or download this
    foreach (@CHOICE) {
      next if (!defined);
      if (m/2001\sCensus\sOutput\sArea/){
    
  3. or download this
    for my $chosen (@CHOICE) {
        if (defined $chosen && $chosen =~ m/2001\sCensus\sOutput\sArea/){