var s = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890';
function f(s, width){
var a=new RegExp('[\\s\\S]{1,'+(width || 4)+'}', 'g');
return s.replace(
a,
function(K,M,L,N){
console.log('===K===='+K);//第一个参数:匹配项
console.log('---M===='+M);//第一个参数:匹配项的起始index
console.log('---L===='+L);//整个字符串
console.log('---N===='+N);//undefined
return '^' + new Array(K.length).join(' ');
});
}
console.log(f(s, 4));
浙公网安备 33010602011771号