removeExclamationButLastOne.js (8kyu 71)

Codewars 알고리즘 풀이


Problem

  • Remove all exclamation marks from sentence but ensure a exclamation mark at the end of string.
    • 문자열의 느낌표를 모두 제거하고, 문자열 끝에 느낌표 하나를 표시한다.


Solution 01

function removeExclamationButLastOne(str) {
  let result = '';
  
  for (let i = 0; i < str.length; i++) {
    if (str[i] !== '!') {
      result += str[i];
    }
  }
  return result + '!';
}

removeExclamationButLastOne('!!abc');  // abc!
removeExclamationButLastOne('a!b!c');  // abc!


Solution 02

function removeExclamationButLastOne(str) {
  return str.split('!').join('') + '!';
}

removeExclamationButLastOne('!!abc');  // abc!
removeExclamationButLastOne('a!b!c');  // abc!

split() 메소드

문자열을 부분 문자열로 분할하고, 새 배열로 반환한다.

join() 메소드

배열의 모든 element를 결합하고, 새 문자열로 반환한다.


Solution 03

function removeExclamationButLastOne(str) {
  return str.replace(/!+/g, '') + '!';
}

removeExclamationButLastOne('!!abc');  // abc!
removeExclamationButLastOne('a!b!c');  // abc!

정규표현식 (RegExp)

replace(): 대응되는 문자열을 찾아 다른 문자열로 치환한다.

+: 1회 이상 연속으로 반복되는 부분에 대응

g: 전역 검색


Solution 04

function removeExclamationButLastOne(str) {
  return `${str.replace(/!+/g, '')}!`;
}

removeExclamationButLastOne('!!abc');  // abc!
removeExclamationButLastOne('a!b!c');  // abc!