[resolved] Split File with more than one data block into more files
Hello, I have file with folowing content: A01 F0301 R08 A35 R56 B879 V65656 A75 Z54254 E878987 I need to create follwing files based on condition (first line char == "A") and save everything below this condition until another occurence of char "A" found so the output files will look as below: File 01.txt> A01 F03 R08 File 35.txt> A35 R56 B879 V65656 File 75.txt> A75 Z54254 E878987 First character defines the TYPE of row, and this row is fixed-length type, so I wanted to use tFileInputMSPositional, but spent some time with that issue and nothing worked in required way. Thank you very much for help. Best regards, archenroot