728x90
startsWith() / endsWith()
startsWith() 메서드는 시작하는 문자열에서 문자열을 검색하여 불린으로(true, false) 반환합니다.
endsWith() 메서드는 끝나는 문자열에서 문자열을 검색하여 불린(true, false)을 반환합니다.
사용법
"문자열".startsWith(검색 문자열);
"문자열".startsWith(검색 문자열, 위치값);
"문자열".endsWith(검색 문자열);
"문자열".endsWith(검색 문자열, 위치값);
예제
const str1 = "javascript reference"
const currentStr1 = str1.startsWith('javascript'); // true
const currentStr2 = str1.startsWith("j"); // true
const currentStr3 = str1.startsWith("java"); // true
const currentStr4 = str1.startsWith("reference"); // true
const currentStr5 = str1.startsWith(); // false
const currentStr6 = str1.startsWith(''); // true
const currentStr7 = str1.startsWith('reference', 7); // false
const currentStr8 = str1.startsWith('reference', 11); // true
const currentStr9 = str1.endsWith('reference'); // true
const currentStr10 = str1.endsWith('e'); // true
const currentStr11 = str1.endsWith('refer'); // false
const currentStr12 = str1.endsWith('javascript'); // false
const currentStr13 = str1.endsWith(); // false
const currentStr14 = str1.endsWith(''); // true
const currentStr15 = str1.endsWith('reference' ,7); // false
const currentStr16 = str1.endsWith('reference' ,20); // true
728x90
반응형
'JavaScript' 카테고리의 다른 글
배열 메서드 응용 (2) | 2022.09.28 |
---|---|
unshift() / shift() (2) | 2022.09.27 |
splice() (1) | 2022.09.27 |
slice() (2) | 2022.09.27 |
reverse() / sort() (1) | 2022.09.27 |
댓글