I have a sample input file as follows, with columns Id, Name, start date, end date, Age, Description, and 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 engineer;Chennai
It contains 30 lines of data. My requirement is to only extract descriptions from the above text file.
My output should contain
Working as a professor in University
He is a software engineer at MNC
working as a mechanical engineer
I need to find a regular expression to extract the Description, and have tried many kinds, but I haven't been able to find the solution. How can I do it?
Working
toworking
? That's tremendously fiddly! – Diversification