欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

给文字加上着重号的JS代码_javascript技巧

程序员文章站 2022-04-28 19:41:58
...
复制代码 代码如下:

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 着重号