✨ 내가 찾고자하는 Pattern(character or string etc)을 찾기에 유용한 helper method
(Pattern은 사실 Regular Expression(정규표현식)이지만 쉽게 표현하기 위해 사용하였다)
💻Example Code
const str = 'Hi There!!';
const matches = str.match(/[aeiou]/gi);
console.log( matches );
console.log( matches ? matches.length : 0 )
😋 특히, 특정 문자열을 검색하는 알고리즘 문제를 풀거나, 개발을 할때 매우 유용하다. (단, RegExp를 잘 안다는 전제하에)
Vowels Algorithm(모음 찾기) 문제를 풀 때 잘 사용했다.
👉 자세한 내용은 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/match
'JavaScript > Built-in Method etc.' 카테고리의 다른 글
String.fromCharCode() (0) | 2020.01.01 |
---|---|
Array.prototype.indexOf() (0) | 2020.01.01 |
String.charCodeAt() (0) | 2019.12.31 |
new String() (0) | 2019.12.29 |
new Array() (0) | 2019.12.29 |