复制代码 代码如下:
var s = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890';
function f(s, width){
return s.replace(
new RegExp('[\\s\\S]{1,'+(width || 4)+'}', 'g'),
function(m){
return '^' + new Array(m.length).join(' ');
});
}
console.log(s);
console.log(f(s, 4));
console.log(f(s, 8));
var s = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890';
function f(s, width){
return s.replace(
new RegExp('[\\s\\S]{1,'+(width || 4)+'}', 'g'),
function(m){
return '^' + new Array(m.length).join(' ');
});
}
console.log(s);
console.log(f(s, 4));
console.log(f(s, 8));
标签:
JS,着重号
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
狼山资源网 Copyright www.pvsay.com
暂无“给文字加上着重号的JS代码”评论...