목적 : javascript의 문자열 메소드를 처음부터 정리하여, 학습하려는 목적입니다.
정확하지 않을 수 있습니다 !
let str = "Hello, world!";
console.log(str.length)
let str1 = "Hello";
let str2 = "world!";
let result = str1.concat(str2);
console.log(result);
let text = "Hello, World!"
let result = text.substr(7, 5) // 인덱스 7부터 시작해서 5개의 문자를 추출
string.slice(start, end)
let text = "Hello, world!";
let result = text.slice(7, 12); // 인덱스 7부터 11까지의 문자들을 추출, 인덱스 12는 포함되지 않습니다.
차이점
substr
는 시작 인덱스와 추출할 길이를 지정합니다.
slice
는 시작 인덱스와 끝 인덱스를 지정합니다.
let str = "Hello, world!";
console.log(str.search("world"));
let str = "Hello, world!";
let result = str.replace("world", "JavaScript")
console.log(result) // world를 JavaScript로 변경
let str6 = "apple, banana, kiwi";
let result2 = str6.split(",");
console.log(result2) // ["apple", " banana", " kiwi"]