Help for this page

Select Code to Download


  1. or download this
     NPLUS,32,0,
    NW,41,0,1
    NWER,51,"0,1,2",12
    
  2. or download this
    NPLUS layernumber 32 datatype 0,
    NW layernumber 41 datatype 0 text 1,
    NWER layernumber 51 datatype 0 datatype 1 datatype 2 text 12;
    
  3. or download this
    open(my $in, '<', 'Text_File.csv')
        or die "Cannot open Text_File.csv: $!";
    
    ...
            printf {$out} "%s layernum %s datatype %s text %s,%s", @fields
    +;
        } 
    }