match()
안녕하세요. 오늘 소개시켜드릴 문자열 메서드는 match()입니다.
match()
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']
결과 확인하기
javascript
reference
r
reference
null
reference
['r', 'r', 'r']
['e', 'e', 'e', 'e']
reference
r
reference
null
reference
['r', 'r', 'r']
['e', 'e', 'e', 'e']
'Javascript' 카테고리의 다른 글
요소 크기 메서드 (12) | 2022.09.01 |
---|---|
문자열 관련 메서드 charAt() (8) | 2022.08.22 |
문자열 관련 메서드 search() (11) | 2022.08.22 |
함수의 유형 (7) | 2022.08.22 |
includes() (11) | 2022.08.17 |
댓글