Answers for "remove duplicates from string in java by replaceall"

1

String remove duplicate in java

String str1 = "ABCDABCD";
String result1 = "";

for (int a = 0; a <= str1.length()-1; a++) {
if (result1.contains("" + str1.charAt(a))) { 
// charAt methodda you provide index number ve sana character olarak donuyor,
// If the string result does not contains str.CharAt(i), 
// then we concate it to the result. if it does we will not
   continue;
}
result1 += str1.charAt(a);
}
System.out.println(result1);
Posted by: Guest on June-04-2021
1

java remove duplicates

public static <T> ArrayList<T> removeDuplicates(ArrayList<T> list){
  Set<T> set = new LinkedHashSet<>(list);
  return new ArrayList<T>(set);
}
Posted by: Guest on June-16-2020

Code answers related to "remove duplicates from string in java by replaceall"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language