반응형
Set을 활용하여 문자열 중복 제거하기
문자열을 Set 형식으로 만든다.
let word = "aabbccddee";
let word_set = new Set(word);
console.log(word_set_ary_join);
Set(5) {'a', 'b', 'c', 'd', 'e'}
Set을 Array 형식으로 변환
let word_set_ary = [... word_set];
console.log(word_set_ary);
['a', 'b', 'c', 'd', 'e']
Array를 String 으로 변환
let word_set_ary_join = word_set_ary.join('');
console.log(word_set_ary_join);
abcde
전체 코드
let word = "aabbccddee";
word = [... new Set(word)].join('');
<script type="text/javascript" src="chrome-extension://iofjdoenolcfcfppooogniigmcjkbnkc/frameground.js"></script>
반응형
'Programming > JavaScript' 카테고리의 다른 글
예제로 정리한 정규식 패턴 (0) | 2022.08.09 |
---|---|
정규 표현식/정규식(RegExp) 플래그(Flag) 자세하게 알아보자! (0) | 2022.08.02 |
Failed to load resource: the server responded with a status of 404 / 404 File not found / sourceMappingURL (2) | 2022.07.20 |
Babel 을 사용해 오류 없는 javascript 코드를 만들자! (0) | 2022.06.10 |
JavaScript: split 공백값 제거하는 여러가지 방법 (0) | 2022.03.10 |