substring()을 사용해서 문자열 앞에서 또는 뒤에서 자르기를 해본다.
정의>
substring은 문자열의 시작 인덱스와 종료 인덱스 안의 부분 문자열을 반환한다.
종료 인데스는 옵션이다.
*
substr은 문자열의 시작 인덱스에서 크기만큼 가져온다.
사용법>
str.substring(indexStart[, indexEnd])
사용예>
1) 앞에서 자르기
var str = "helloworld";
// 앞에서 5 characters
var tmp = str.substring(0, 4);
결과>
hello
2) 뒤에서 자르기
- 원하는 값이 'world'라면 총길이 10에서 5 실제로 10-5가 적용되면 str.substring(5)
따라서 시작 인데스값만 적용한다.
var str = "helloworld";
// 뒤에서 5 characters
var tmp = str.substring(str.length-5);
결과>
world
출처>
mozilla 개발자 사이트
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/String/substring
substring()메소드는 string 객체의 시작 인덱스로 부터 종료 인덱스 전 까지 문자열의 부분 문자열을 반환합니다.
The substring() method returns the part of the string between the start and end indexes, or to the end of the string.
'Software > Javascript&jQuery' 카테고리의 다른 글
[Javascrip&jQuery] 버튼(button) 또는 객체(Object)의 .show() .hide() 판정하기 - .toggle() 아님 (0) | 2020.04.21 |
---|---|
[jQuery] json 파일 읽기 - .getJSON() 과 .ajax() 차이 (0) | 2020.03.01 |
[jQuery] 특정 조건에 Button 숨기기, 보이기 - hide(), show() (0) | 2020.02.22 |
[Javascript&jQuery] HTML 내에서 로그 출력하기 console.log(), alert(), ${} (0) | 2020.02.07 |
[Javascript] replace() 함수 사용하기, 년도월일 에서 - 제외하기, 정규식 (0) | 2019.11.23 |