I have a large CSV file that has a list like so:
data1; data2; data3; data4
in data4 the content looks like so: Bad String
The content in data4 should look like: Correct String
What is the best method to iterate through every row in data4 to remove these extra spaces? I know I have to somehow access the position of data4, which would be [3], but I just dont know how to do it for every row while implementing the extra space removal.
Thanks in advance!