match()
이 함수는 문자열 메서드 중 하나입니다. 오늘도 열심히 함수에 대해 배워보자구요!
■ 개념
이 함수는 문자열을 찾아 배열로 반환합니다.
이 메서드도 정규식을 지원합니다.
■ 문법
"문자열".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']
const currentStr8 = str1.match(/e/g); //['e', 'e', 'e', 'e']
728x90
'JavaScript' 카테고리의 다른 글
[메서드] 요소 크기 메서드 (5) | 2022.09.01 |
---|---|
charAt()메서드 (5) | 2022.08.22 |
search() 메서드 (5) | 2022.08.22 |
함수의 유형 (3) | 2022.08.22 |
includes() 메서드 (6) | 2022.08.17 |
댓글