在 JavaScript 中将字符串拆分为多个部分
需要编写一个 JavaScript 函数,该函数接收一个字符串和一个数字 n(n 整除字符串的长度),并需要返回一个长度为 n 的字符串数组,该数组包含该字符串的 n 个相等部分。
示例
该代码如下所示 −
const str = 'we will be splitting this string into parts';
const num = 6;
const divideEqual = (str, num) => {
const len = str.length / num;
const creds = str.split("").reduce((acc, val) => {
let { res, currInd } = acc;
if(!res[currInd] || res[currInd].length < len){
res[currInd] = (res[currInd] || "") + val;
}else{
res[++currInd] = val;
};
return { res, currInd };
}, {
res: [],
currInd: 0
});
return creds.res;
};
console.log(divideEqual(str, num));输出
控制台中的输出 −
[ 'we will ', 'be split', 'ting thi', 's string', ' into pa', 'rts' ]
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP