Help for this page

Select Code to Download


  1. or download this
      @$accounts = grep { !/44443/ } @$accounts;
    # ^
    # |
    # Here.
    
  2. or download this
    @$accounts = grep { $_->{acc} !~ /44443/ } @$accounts;
    
  3. or download this
    push @$all, @$accounts;