How to delete repeated characters using JavaScript strings _ javascript skills

Source: Internet
Author: User
This article describes how to delete duplicate characters in a javascript string through code examples. The code is simple and easy to understand. For your reference, this section describes how to delete duplicate characters in a string, no matter whether it is of practical value or not, it is quite good to learn algorithms.

The Code is as follows:

Function dropRepeat (str) {var result = []; var hash = {}; for (var I = 0, elem; I

 

  

The functions in the above Code can delete repeated characters in strings. Example:

DropRepeat ("abcdd ")

The returned value is abcd.

Next, let's share Python: remove the repeated characters in the string.

Python 2.7: #-*-encoding: UTF-8-*-string = 'abc123456ab2s 'r = ''. join (x for I, x in enumerate (string) if string. index (x) = I) print stringprint r

The output is as follows:

Abc123456ab2s
Abc123456s

Related Article

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.