Help for this page

Select Code to Download


  1. or download this
    my @wetrasnfer_fix = map /([0-9]*_[0-9]*)/, @wetransfer;
    
  2. or download this
    my @wetrasnfer_fix = map s/\.tif$//r, @wetransfer;
    
  3. or download this
    my @wetrasnfer_fix = map +(split /\./)[0], @wetransfer;