每一行输出5个字符之后换行 js

2021-05-31 00:01

阅读:356

标签:mic   结果   strong   alt   amp   let   汉字   load   for   

方法1 

使用正则 (如果是汉字,此正则,每五个字换行,如果是英文字符,每十个英文,换行)

let arrX ="这是个测试字符串,这是个测试字符串"

arrX = arrX.replace(/[^\x00-\xff]/g,"$&\x01").replace(/.{10}\x01?/g,"$&\n").replace(/\x01/g,"")
 
方法2
循环遍历
let res = ""
let arrX ="这是个测试字符串,这是个测试字符串"
for(let i=0,j=1; i
  if(j&&j%6 === 0) {
    res += ‘
  } else {
    res +=  arrX[i]
  }
}
document.write(res)
 
结果:
技术图片

 

 

每一行输出5个字符之后换行 js

标签:mic   结果   strong   alt   amp   let   汉字   load   for   

原文地址:https://www.cnblogs.com/chr506029589/p/14650622.html

上一篇:jsp.6

下一篇:trino nodejs 驱动


评论


亲,登录后才可以留言!