javascript字符串相关操作方法

1. 字符串去除空格、添加空格:

let str = "1234 56 78 90"
 //去除所有空格
console.log(str.replace(/\s/g, "")) //1234567890
//每4个字符添加一个空格
console.log(str.replace(/\s/g, "").replace(/(.{4})/g, "$1 ")); //1234 5678 90

posted on 2024-09-12 15:40  逍遥云天  阅读(25)  评论(0编辑  收藏  举报

导航