Help for this page

Select Code to Download


  1. or download this
    for (@array) {
        if (condition($_)) {
            $_ = transform($_);
        }
    }
    
  2. or download this
    $_ = transform($_) for grep condition($_), @array;
    
  3. or download this
    my @array = qw( John Jake and Jasper );
    $_ = uc($_) for grep /^a/, @array;
    print("@array\n");  # John Jake AND Jasper