题解 | #字符串分隔#
字符串分隔
http://www.nowcoder.com/practice/d9162298cb5a437aad722fccccaae8a7
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
rl.on('line', function (line) {
let overNumber=line.length % 8;
// 原字符串长度是否为8的倍数,如果是,那就正常每隔8个字符取一次,如果不是倍数,那看余数和8相差多少
// 缺几个,就拼接几个0到原字符后面,还是形成一个长度为8的倍数的字符串,
// mdn中提示,直接用+或+=来拼接字符串,来替代 concat()拼接
let str=overNumber===0?line : line+new String('0').repeat(8-overNumber);
for(let i=0;i<str.length;){
console.log(str.slice(i,i+=8))
}
});