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!".
모음만 제거하는 예제다. 정규표현식 /[aeiou]/ gi(대소문자 구별x)를 통해서 쉽게 구현이 가능하다.
'Computer science > 알고리즘' 카테고리의 다른 글
[자바스크립트로 구현한 알고리즘] Complementary DNA (0) | 2016.09.17 |
---|---|
[자바스크립트로 구현한 알고리즘] Stringy Strings (0) | 2016.09.17 |
[자바스크립트로 구현한 알고리즘] Beginner Series #3 Sum of Numbers (0) | 2016.09.17 |
[자바스크립트로 구현한 알고리즘] Return Negative (0) | 2016.09.17 |
[자바스크립트로 구현한 알고리즘] Convert number to reversed array of digits (0) | 2016.09.14 |
이 포스팅은 쿠팡파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.