Help for this page

Select Code to Download


  1. or download this
    print "\"$field1\"\t\"$field2\"\n";
    output... I took out "" in data input because it was too 
    ...
    "-0.497"    " 4.445e-6"
    "-0.496"    " 4.433e-6"
    "-0.495"    " 4.421e-6"
    
  2. or download this
    my @fields = split /[\s,]+/;
    
  3. or download this
    while(<DATA>){
            chomp(); #optional
    ...
    "-0.497, 4.445e-6"
    "-0.496, 4.433e-6"
    "-0.495, 4.421e-6"