I have a text file having some information in the form a table, having some imporatant data at a specific column. I need to read the text file and split the files into several files based on the value in the column.
Example:
ID Course Name
001 EEE Harsha
002 CSE Madhuri
003 EIE Jagan
004 EEE Chandu
005 CSE Sukanya
006 EIE Sarat
Here in this example based on course column, I can split the data into 3 files. I have to develop a similar kind of application. Please give an idea on how to approach at the solution. Thanks in advance.