Textpipe is OK but I wonder if I can do the following :
I have a file consisting of a header and a number of detail lines. I have to find some values in the header part and put them on each detail line to make a CSV for another application.
I've been searching for the whole WE and could not find a solution.
The input file looks like this (dummy example) :
*** Header ***
PartNo : 123456
date : 20031021
order : ...
*** end of header ***
862836 18/10/03
778235 18/10/03
889765 19/10/03
the output should be :
123456,862836,21/10/2003,18/10/2003
123456,778235,21/10/2003,18/10/2003
123456,889765,21/10/2003,19/10/2003
Any suggestion?
christian
