Hi,
I am trying to get an idea how to achieve this. Please shed some light if you have an idea how to do in PowerShell.
I have multiple CSV in a folder.
The original format of CSV is in the following format:
C1 C2 C3
123 547 558
456,887 787 887
789 7894 710
788,897,741 127 8798
I would like to convert to original csv to modified csv:
C1 C2 C3
123 547 558
456 787 887
887 787 887
789 7894 710
788 127 8798
879 127 8798
741 127 8798
Thanks!