I have a huge csv file(around 100GB). My problem is that I need to replace commas(,) in the file with semi-colon(;) except for the ones within double-inverted commas("").
I tried several methods but none seem to be working. Also this modification needs to be on Windows, hence sed and awk are out of option.
Example:
Input : "A,B,C",D,E,"FG","H,J",K
Output : "A,B,C";D;R;"FG";H,J;K
Once this is done, I need to remove the ".
I am able to remove the " from the file, but semi-colon replacement is failing everytime.
Please let me know if this is achievable through Powershell.