I have an example input file as follows: columns Id, Name, start date, end date, age, description, location
220;John;23/11/2008;22/12/2008;28;Working as a Professor in University;Hyderabad 221;Paul;30;23/11/2008;22/12/2008;He is a Software engineer at MNC;Bangalore 222;Emma;23/11/2008;22/12/200825;Working as a mechanical enginner;Chennai
It contains 30 rows of data. My requirement is to extract only descriptions from a text file.
My conclusion should contain
Work as a professor at the university
He is a software developer at MNC
works like a mechanical enginner
I need to find a regular expression to extract the description, and tried many kinds, but could not find a solution. Any suggestions?
source share