i have String cat = "cat1, cat1, cat1, cat1, cat2, cat2, cat2, cat3";
i need to String cat = "cat1, cat2, cat3";
how to do this ?
It's my solution but not excellent:
String[] words = cat.split(",");
Arrays.sort(words);
....
|
you can try this -
|
|||||||||||||
|
|
Try
This will produce the String your require.
|
|||
|
|
|
here:
|
|||||||
|
Arrays.asListon the resulting array. Create aSet<String>out of the resulting list to remove dups. Join the resulting strings back into a new string if needed. – aioobe Jan 23 at 9:14