본문 바로가기
Javascript

match( )

by 코딩달림 2022. 8. 22.
728x90

문자열 메소드 - 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' 카테고리의 다른 글

JQUERY  (3) 2022.08.29
charAt( )  (3) 2022.08.22
search( )  (4) 2022.08.22
함수 유형  (2) 2022.08.22
includes( )  (3) 2022.08.18

댓글


광고 준비중입니다.