데이터타입(문자열)

Jtiiin:K·2023년 10월 12일
0
post-thumbnail

String (문자열)

✅ 길이 확인하기 (str.length)

let str = "Hello, world!";
console.log(str.length); // 13

✅ 결합 (concat)

let str1 = "Hello, ";
let str2 = "world!";
let result = str1.concat(str2);
console.log(result); // "Hello, world!"

✅ 자르기 (substr, slice)

substr(시작위치, 자를개수)
slice(시작위치, 끝위치)

let str = "Hello, world!";
console.log(str.substr(7, 5)); // "world"
console.log(str.slice(7, 12)); // "world"

search(문자열) : 문자열이 시작하는 위치 반환

let str = "Hello, world!";
console.log(str.search("world")); // 7

✅ 대체 (replace)

replace(대체될문자, 대체할문자)

let str = "Hello, world!";
let result = str.replace("world", "JavaScript");
console.log(result); // "Hello, JavaScript!"

✅ 분할 (split)

split("자를 기준")

let str = "apple, banana, kiwi";
let result = str.split(",");
console.log(result); // ["apple", " banana", " kiwi"]
profile
호기심 많은 귀차니즘의 공부 일기

0개의 댓글