Help for this page

Select Code to Download


  1. or download this
    @a = grep { not is_unwanted($_) } @a;
    
  2. or download this
    my @a = qw(bob bob alice bob john);
    
    for (reverse 0 .. $#a) {
        splice @a, $_, 1 if $a[$_] eq "bob";
    }