I have a dataset consisting of about 50,000 rows, each line (or cell) with values seperated with a comma.
item 1, item 2, item 1, item 1, item3, item 2, item 4, item3
the goal output is simply
item 1, item 2, item3, item 4
I can use excel, open office calc, notepad++, or any other freely available program (I found a javascript solution, however it was for a single string, attempting to run it 50,000 times either did not work, or would take way longer than I have, and I don't know enough JS to adjust it)
any suggestions on how to do this?
<edited to note that some items will contain spaces>