728x90
문자열 메소드 - charAt( )
선택한 숫자의 위치값에 있는 문자를 반환하는 메서드입니다.
매소드 | 설명 | 문법 |
---|---|---|
charAt( ) | 선택한 숫자의 위치값에 있는 문자를 추출해 반환합니다. | "문자열".charAt(숫자); |
charAt( ) 메소드는 문자열에서 지정된 위치에 존재하는 문자를 찾아서 반환하는 함수입니다.
메소드에 숫자를 적으면 숫자에 해당하는 문자를 찾습니다. 또한 정규표현식을 사용해 검색이 가늘합니다.
{
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]
}
댓글