java去除字符串中重复不重复消除重复后字符

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java去除字符串中重复不重复消除重复后字符相关的知识,希望对你有一定的参考价值。

java去除字符串中重复、不重复、消除重复后字符

import java.util.HashSet;
import java.util.Set;

public class Main {

public static void main(String[] args) {
    String str = "aaasd";
    System.out.println("原字符串: "+str);
    Set<Character> set1 = new HashSet<Character>();
    Set<Character> set2 = new HashSet<Character>();
    Set<Character> set3 = new HashSet<Character>();
    //把字符串转为字符数组
    char[] cs = str.toCharArray();
    //便利字符数组aaasd
    for(char c:cs){
        //把遍历的字符加入set1(HashSet,无序不可重复)
        boolean b = set1.add(c);//asd
        if(!b){
            //b不等空就是有重复的字符,重复的字符加入set2
            set2.add(c);//a
        }
    }
    //把消除重复后的字符set1赋给Set3
    set3.addAll(set1);//asd
    //把消除的重复后的字符set1 - 重复的字符set2 = 不重复的字符
    set3.removeAll(set2);//asd-a = sd
    System.out.println("=========消除重复厚的字符=========");
    for ( char c : set1){
        System.out.print(c + "");
    }
    System.out.println("
===========重复的字符===============");
    for (char c :set2){
        System.out.print(c + "");

    }
    System.out.println("
========不重复的数组===========");
    for (char c :set3){
        System.out.print(c + "");
    }

}

}

以上是关于java去除字符串中重复不重复消除重复后字符的主要内容,如果未能解决你的问题,请参考以下文章

java去除重复字符串的问题?

怎么去掉字符串中重复出现的字符

Java字符串去掉重复字符

含有重复字符的字符串排列组合

JS判断一个字符串是不是含有重复字符

oracle查询出来的数据如何消除重复数据