I have a string with repeated letters i want, letter that are repeated more then once to show only once. for instance I have a string aaabbbccc i want the result to be abc. so far my function works like this: if the letter doesn't repeat its not shown if its repeated once its show only once (if aa shows a) if its repeated twice shows all(if aaa shows aaa) if its repeated 3 times it shows 6( if aaaa shows aaaaaa)
function unique_char(string){
var str_length=string.length;
var unique='';
var count=0;
for(var i=0; i<str_length; i++){
for(var j=i+1; j<str_length; j++){
if(string[i]==string[j]){
count++
unique+=string[i];
}
}
}
return unique;
}
document.write( unique_char('aaabbbccc'))
function must be with loop inside a loop that's why the second for is inside the first
'aaabbbccc'.replace(/(.)\1+/g, "$1")– Neil Dec 13 '12 at 20:48unique_char('abracadabra')be? – Neil Dec 13 '12 at 20:52