Java removes duplicate characters from a string

Source: Internet
Author: User

The basic two methods
1, the use of regular expressions.

public string Removeduplicatechars (String str) {    return Str.replaceall ("(? s)" (.) (? =.*\\1) "," ");}

(? s) turn on single-line mode Dotall let. Number match any character
(.) Any character and capture the first set of
(? =.*\1) This is the assertion that the next content will be any character plus the first set of captured content, if this entire expression matches to, represents, the first capturing group content in the string, at least two occurrences, replaced by "" empty string. After a global substitution, the characters that appear throughout the string are not duplicated.

2, use traversal.

public string Removeduplicatechars (String str) {    string[] STRs = Str.split (""); It means you can't understand this place, why cut    list<string> List = new arraylist<string> () with an empty string;    StringBuffer buffer = new StringBuffer ();    for (stirng s:strs)    {        if (!list.contains (s))        {            list.add (s);            Buffer.append (s);        }    }    return buffer.tostring ();}

Java removes duplicate characters from a string

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.