Help for this page

Select Code to Download


  1. or download this
    use List::MoreUtils qw( apply );
    my @bla = apply { tr/h//d } @arr;
    
    use Algorithm::Loops qw( Filter );
    my @bla = Filter { tr/h//d } @arr;