Help for this page

Select Code to Download


  1. or download this
    foreach $item (@xray){ 
    $item =~ s/^ *//g;
    ...
    $item =~ s/\s+/ /g;
    push(@clean, $item);
    }
    
  2. or download this
    open (FILE1, "$file1_val") or die;
    open (FILE2, "$file2_val") or die;
    ...
    close FILE1;
    close FILE2;
    }