Help for this page

Select Code to Download


  1. or download this
    my @results_tmp = map {($_ ne "") ? "$_" : "--"} @results;
    print join(",", @results_tmp),"\n";
    
  2. or download this
    my @results_tmp = @results;
    ($_ eq "") && ($_ = "--") for @results_tmp;
    print join(",", @results_tmp),"\n";