문자열 자르기 위한 메서드 substring(), substr()

리충녕·2023년 10월 14일
0

Javascript

목록 보기
30/50

📖 string.substring(), substr()


📌 substring()

  • 문자열의 시작 인덱스부터 종료 인덱스 전 문자열까지 반환
  • 매개변수로는 startIndex, endIndex가 있다.
  • endIndex의 문자열은 최종 반환될 문자열에 포함되지 않는다.

기본 구조

string.substring(startIndex, endIndex);


예제

const words = 'sunday';

console.log(words.substring(1,3));
console.log(words.substring(1));

endIndex가 생략된 경우 startIndex부터 끝까지 모든 문자를 추출한다.


📌 substr()

  • 특정 인덱스부터 지정한 수 만큼의 문자열 반환
  • 매개변수로는 startIndex, 문자열 추출할 숫자를 지정할 length가 있다.

기본 구조

string.substr(startIndex, length);


예제

const words = 'sunday';

console.log(words.substr(3,2));
console.log(words.substr(3));

substring()메서드와 동일하게 length를 생략할 경우 startIndex 뒷 부분 문자열이 모두 반환된다.


참고
substring()
substr()

0개의 댓글