728x90
match()
match() 메서드는 문자열을 검색하고 배열을 반환합니다.
const str1 = "javascript reference";
const currentStr1 = str1.match("javascript");
const currentStr2 = str1.match("reference");
const currentStr3 = str1.match("r");
const currentStr4 = str1.match(/reference/);
const currentStr5 = str1.match(/Reference/);
const currentStr6 = str1.match(/Reference/i); //대소문자 구별x
const currentStr7 = str1.match(/r/g);
const currentStr8 = str1.match(/e/g);
결과보기
728x90
반응형
'Javascript' 카테고리의 다른 글
[javascript]GSAP (4) | 2022.08.29 |
---|---|
[javascript]charAt() / charCodeAt() (3) | 2022.08.22 |
[javascript]search() (3) | 2022.08.22 |
[javascript]함수 유형 (3) | 2022.08.22 |
[javascript]includes() (3) | 2022.08.17 |
댓글