I am trying to iterate through a string in order to remove the duplicates characters.
For example the string aabbccdef would become abcdef
It is just a string, not a string array and I am not using string builder.
How can you do it???
public class test {
public static void main(String[] args) {
String input = new String("abbc");
String output = new String();
for (int i = 0; i < input.length(); i++) {
for (int j = 0; j < output.length(); j++) {
if (input.charAt(i) != output.charAt(j)) {
output = output + input.charAt(i);
}
}
}
System.out.println(output);
}
}