15. String 다루기

김의찬·2023년 9월 7일
0

JS챌린지

목록 보기
15/29
post-custom-banner

특정 위치의 문자열 알아내기

.charAt 함수를 이용한다.

첫 문자 : str.charAt(0);
마지막 문자 : str.charAt(str.length-1);

첫 문자 : str[0];
마지막 문자 : str[str.length-1];

부분 문자열 구하기

문자열의 연속된 일부분을 구하는 함수

.substring(pos1,pos2) : pos1 부터 pos2 까지의 부분 문자열 반환

substr(pos,length) : pos에서 length 길이만큼 부분 문자열 반환.

문자열 검색하기

indexOf(str);

lastIndex(str);

profile
김의찬입니다
post-custom-banner

0개의 댓글