in reply to PERL TO SPLIT BIGFILE;SAVE TEXT EXTRACTS TO SEPERATE FILES

For each subsection: ------ Start String: "WinSolve log file created " End String: "Exit" File Name to Save Extracted subsection text to: Occurs on Line 3 of each subsection

hint: read the file line by line, match anything between "WinSolve log file created" and "Exit", non greedy and print OUTPUT each matching to the output file.

see perldoc perlretut

  • Comment on Re: PERL TO SPLIT BIGFILE;SAVE TEXT EXTRACTS TO SEPERATE FILES