๐ง์๊ณ ๋ฆฌ์ฆ?์๊ณ ์ถ์!
ํ๋ก๊ทธ๋๋จธ์ค(์๋ฐ์คํฌ๋ฆฝํธ) - ์๋ผ์ ๋ฐฐ์ด๋ก ์ ์ฅํ๊ธฐ
eazyseon
2023. 2. 27. 11:20
๋ฐ์ํ
- ๋ฌธ์ ์ค๋ช
- ์ ์ถ๋ ฅ ์์
- ๋์ ํ์ด
function solution(my_str, n) {
let answer = [];
let cnt = 0
while(cnt<my_str.length){
answer.push(my_str.substr(cnt,n))
cnt+=n
}
return answer;
}
substr์ด๋ผ๋ ๋ฉ์๋๋ฅผ ์ฌ์ฉํ์ฌ ํ์๋ค.
substr(์์์ธ๋ฑ์ค, ๊ธธ์ด)๋ฅผ ์ฃผ์ด ์ฌ์ฉํ๋ค.
๊ทธ๋ผ ์๋์ฒ๋ผ ๋ฌธ์์ด์ ์๋ฅผ ์ ์๊ณ ํด๋น ๋ฌธ์์ด์ ๋น ๋ฐฐ์ด์ push ํด์ฃผ๋ฉด ๋๋ค!
my_str.substr(cnt,n) // 'abc1Ad' , 'dfggg4' ,'556b'
- ๋ฐฐ์ด ์
1.substr (ํญ์ ํท๊ฐ๋ฆฌ๋ substr,substring,slice ๋น๊ต ๐ https://eazyseon.tistory.com/20)
๋ฐ์ํ