Help for this page

Select Code to Download


  1. or download this
    push @digits, map { /[0-9]/ ? $_ : () } @list
    
  2. or download this
    push @digits, grep { /[0-9]/ } @list;