Showing unique characters in a string only once

后端 未结 13 2259
-上瘾入骨i
-上瘾入骨i 2020-12-31 20:38

I have a string with repeated letters. I want letters that are repeated more than once to show only once. For instance I have a string aaabbbccc i want the result to be abc.

相关标签:
13条回答
  • 2020-12-31 21:06

    Too late may be but still my version of answer to this post:

    function extractUniqCharacters(str){
        var temp = {};
        for(var oindex=0;oindex<str.length;oindex++){
            temp[str.charAt(oindex)] = 0; //Assign any value
        }
        return Object.keys(temp).join("");
    }
    
    0 讨论(0)
提交回复
热议问题