Is Texpipe able to do that ?
Posted: Fri Apr 18, 2008 6:59 pm
I'm evaluating Textpipe, I've different text files, each text file is like that
Text1.txt
Name:Alfred
Surname:Brown
City:London
CarType:Ford
CarModel:Mustang
Text2.txt
Name:Bob
Surname:White
CarType:Mercedes
Text3.txt
Name:Lisa
City:Manchester
CarType:BMW
CartModel:320 Convertible
Using the demo I managed to get this output on each line:
What I would like to get as result is:
So I get the same type of field on the same column, how I can do that with Textpipe ?
Text1.txt
Name:Alfred
Surname:Brown
City:London
CarType:Ford
CarModel:Mustang
Text2.txt
Name:Bob
Surname:White
CarType:Mercedes
Text3.txt
Name:Lisa
City:Manchester
CarType:BMW
CartModel:320 Convertible
Using the demo I managed to get this output on each line:
Code: Select all
Alfred\tBrown\tLondon\tFord\tMustang\r\n
Bob\tWhite\tMercedes\r\n
Lisa\tManchester\tBMW\t320 Convertible\r\n
Code: Select all
Alfred\tBrown\tLondon\tFord\tMustang\r\n
Bob\tWhite\t\tMercedes\t\r\n
Lisa\t\tManchester\tBMW\t320 Convertible\r\n