var s = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890';
function f(s , width){
return s.replace(
new RegExp('[\s\S]{1,' (너비 || 4) '}', 'g'),
함수(m) {
return '^' new Array(m.length).join(' ');
});
}
console.log(s);
console. log(f(s, 4));
console.log(f(s, 8));