본문 바로가기
코테연습

2. Disemvowel Trolls

by hxunz 2022. 3. 9.

Trolls are attacking your comment section!

A common way to deal with this situation is to remove all of the vowels from the trolls' comments, neutralizing the threat.

Your task is to write a function that takes a string and return a new string with all vowels removed.

For example, the string "This website is for losers LOL!" would become "Ths wbst s fr lsrs LL!".

Note: for this kata y isn't considered a vowel.

 

function disemvoewel(str) {
  return str.replace(/[aeiouAEIOU]+/g, '');

 

모르겠어서 다른 사람 코드 보고 따라해봤다..ㅜ

 

주어지는 문장에 있는 모든 모음을 제거하기 위해서 replace()를 사용했다.

g는 발생할 모든 패턴에 대한 전역 검색이라는 의미이다.

'코테연습' 카테고리의 다른 글

6.Isograms  (0) 2022.03.16
5.You're a square!  (0) 2022.03.14
4.Get the Middle Character  (0) 2022.03.11
3.Descending Order  (0) 2022.03.10
1. Square Every Digit  (0) 2022.03.09

댓글