본문 바로가기

JS/TypeScript

타입스크립트 substr() substring()

substr()은 인자로 시작 인덱스와 길이를 가진다. 인덱스는 시작지점이고 길이는 그 인덱스로부터 얼마만큼 잘라낼 것인지 결정한다.

var str = "Apples are round, and apples are juicy."; 
console.log("(1,2): "    + str.substr(1,2)); 
console.log("(-2,2): "   + str.substr(-2,2)); 
console.log("(1): "      + str.substr(1)); 
console.log("(-20, 2): " + str.substr(-20,2)); 
console.log("(20, 2): "  + str.substr(20,2));
(1,2): pp 
(-2,2): y. 
(1): pples are round, and apples are juicy. 
(-20, 2): nd 
(20, 2): d


substring()은 시작 인덱스와 끝 인덱스를 가진다. 시작 인덱스에서 끝 인덱스-1까지 잘라낸다.

var str = "Apples are round, and apples are juicy."; 
console.log("(1,2): "    + str.substring(1,2)); 
console.log("(0,10): "   + str.substring(0, 10)); 
console.log("(5): "      + str.substring(5));
(1,2): p 
(0,10): Apples are 
(5): s are round, and apples are juicy.


https://www.tutorialspoint.com/typescript/typescript_string_substring.htm

https://www.tutorialspoint.com/typescript/typescript_string_substr.htm

'JS > TypeScript' 카테고리의 다른 글

타입스크립트 튜토리얼 array  (0) 2018.12.22
타입스크립트 튜토리얼 split  (0) 2018.12.21
타입스크립트 튜토리얼 String  (0) 2018.12.21
타입스크립트 튜토리얼 Number  (0) 2018.12.21
타입스크립트 함수  (0) 2018.12.15