I have a huge file (more than 2 GB) where data is like below.
12,324,32342,E:fsdsf,23432,34534,45345,324
13,3224,342,E:werwefsdsf,23432,34534,45345,324
121,3244,33442,E:,23432,34534,45345,324
Here I need to replace all the occurrences of 4th column wherever it is encountering E: with a blank space "", but wherever it finds a string after E:, that should remain as it is.
The expected output would be:
12,324,32342,E:fsdsf,23432,34534,45345,324
13,3224,342,E:werwefsdsf,23432,34534,45345,324
121,3244,33442,,23432,34534,45345,324