p2perl has asked for the wisdom of the Perl Monks concerning the following question:
The output file should have the following format (column structured) :Field_1 = value_f1_1 Field_2 = value_f2_1 ... Field_n = value_fn_1 Field_1 = value_f1_2 Field_2 = value_f2_2 ... Field_n = value_fn_2 etc...
Any idea how can this be done using perl ?Field_1 ; Field_2 ; Field_3; ... ; Field_n value_f1_1 ; value_f2_1 ; value_f3_1 ; ... ; value_fn_1 value_f1_2 ; value_f2_2 ; value_f3_2 ; ... ; value_fn_2 etc...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to convert a row structured text file into a column structed text file
by Fletch (Bishop) on May 04, 2007 at 16:10 UTC | |
|
Re: How to convert a row structured text file into a column structed text file
by Corion (Patriarch) on May 04, 2007 at 16:12 UTC |