Hi all.

If I have a csv string like below how can I remove the duplicatre entrys? End result should still be a csv string but just the duplicates remove.

list = "A,B,C,D,A,B,C,D,E"

'new list should look like
list = "A,B,C,D,E"