728x90
📎 match() 이란?
: 특정 텍스트 안에 검색할 단어, 찾고싶은 단어가 있는 경우 해당 텍스트가 문구에 포함되어 있는지 확인하는 메서드입니다.
: 단어뿐만 아니라 정규표현식을 사용하여 특정 패턴을 검색하는 것 가능
string.match('찾을 단어')
반환(배열로 표현됨) : [] : 예시 참고!
정규식 지원됨
🔍 match() 메서드 사용예제 (★주석이 리턴값입니다!★)
const str1 = "javascript reference";
const currentStr1 = str1.match("javascript"); //javascript
const currentStr2 = str1.match("reference"); //reference
const currentStr3 = str1.match("r"); //r
const currentStr4 = str1.match(/reference/); //reference
const currentStr5 = str1.match(/Reference/); //null
const currentStr6 = str1.match(/Reference/i); //reference
const currentStr7 = str1.match(/r/g); //['r', 'r', 'r'] //r 전부 찾기
const currentStr8 = str1.match(/e/g); //['e', 'e', 'e', 'e'] //e 전부 찾기
'Javascript' 카테고리의 다른 글
GSAP (5) | 2022.08.30 |
---|---|
charAt() (4) | 2022.08.23 |
search() (2) | 2022.08.23 |
함수 유형 (2) | 2022.08.23 |
includes() (3) | 2022.08.18 |
댓글