반응형
split() 메서드는 String 객체를 지정한 구분자를 이용하여 여러 개의 문자열로 나눕니다.
const str = 'The quick brown fox jumps over the lazy dog.';
const words = str.split(' ');
console.log(words[3]);
// Expected output: "fox"
const chars = str.split('');
console.log(chars[8]);
// Expected output: "k"
const strCopy = str.split();
console.log(strCopy);
// Expected output: Array ["The quick brown fox jumps over the lazy dog."]
join() 메서드는 배열의 모든 요소를 연결해 하나의 문자열로 만듭니다.
const elements = ['Fire', 'Air', 'Water'];
console.log(elements.join());
// Expected output: "Fire,Air,Water"
console.log(elements.join(''));
// Expected output: "FireAirWater"
console.log(elements.join('-'));
// Expected output: "Fire-Air-Water"
replaceAll() 메서드는 pattern의 모든 일치 항목이 replacement로 대체된 새 문자열을 반환합니다. pattern은 문자열 또는 RegExp일 수 있으며 replacement는 각 일치 항목에 대해 호출되는 문자열 또는 함수일 수 있습니다. 원래 문자열은 변경되지 않습니다.
const p = 'The quick brown fox jumps over the lazy dog. If the dog reacted, was it really lazy?';
console.log(p.replaceAll('dog', 'monkey'));
// Expected output: "The quick brown fox jumps over the lazy monkey. If the monkey reacted, was it really lazy?"
// Global flag required when calling replaceAll with regex
const regex = /Dog/gi;
console.log(p.replaceAll(regex, 'ferret'));
// Expected output: "The quick brown fox jumps over the lazy ferret. If the ferret reacted, was it really lazy?"
연습
function solution1(string, letter) {
return string.replaceAll(letter, '');
}
function solution2(string, letter) {
return string.split(letter).join('');
}
let string = ['fjnafnia', 'FjnaFnia'];
let letter = ['f', 'F'];
for (let i = 0; i < string.length; i++) {
console.log('solution1', solution1(string[i], letter[i]));
console.log('solution2', solution2(string[i], letter[i]));
}
결과
반응형
'JavaScript > 메소드' 카테고리의 다른 글
[javascript] 가장 큰수 2개 찾기, sort(), Math.max(), splice(), indexOf() (0) | 2023.09.12 |
---|---|
[javascript] 거듭제곱, **, << (0) | 2023.09.03 |
[javascript] pop(), unshift(), reverse(), 배열 뒤집기 (0) | 2023.09.01 |
[javascript] 배열에 숫자 갯수 세기, join(), split(), filter() (0) | 2023.08.31 |
[javascript] 정규식(new RegExp()) Dot(.), x{n,m} (0) | 2023.08.30 |
댓글