Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I need to read a file which not contains '\n'. It looks like :
"first field 1 second field 1 first field 2 second field 2 first field 3 second field 3 first field 4 second field 4....."
I have to put this file in two columns like this:
column 1 column 2
first field 1 second field 1
first field 2 second field 2
first field 3 second field 3
This is fixed field but I can't use t File input Positional object because my file doesn't contains separator of lines like '\n'.
Can you help me please?
Thank you very much for your help!
I try your method but finally I was easier to use a t-Java-Flex to read my file in stream, line by line as I wanted. After I used a t-map with some functions that I wrote in Java as a routine to separate each line in 2 columns.
Thank you very much for your help!
I try your method but finally I was easier to use a t-Java-Flex to read my file in stream, line by line as I wanted. After I used a t-map with some functions that I wrote in Java as a routine to separate each line in 2 columns.