본문 바로가기
Javascript

match()

by 코딩대원 2022. 8. 23.

문자열 객체

match()에 대해 알아보는 시간을 가지도록 하겠습니다.


match()

match() 메서드는 문자열이 정규식과 매치되는 부분을 검색합니다.
반환(배열)

{
    //13 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' 카테고리의 다른 글

함수 유형 02  (5) 2022.08.23
charAt()  (4) 2022.08.23
search()  (4) 2022.08.23
includes()  (1) 2022.08.18
padStart() / padEnd()  (1) 2022.08.18

댓글


HTML
CSS

JAVASCRIPT

자세히 보기