push @positions, [ $read->end + 1, $base ];
i would like to remove every line of this array that contains a G or a T as the string
@positions = grep $_->[ 1 ] =~ /ac/i, @positions;
i would like to get rid of the strings altogether, so i just have an array with one column representing the number
@positions = map $_->[ 0 ], @positions;
In reply to Re: filtering an array
by jwkrahn
in thread filtering an array
by prbndr
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |