问题描述
把一个字符串里的所有空格转换为横线
var str = "hello word"; var params=str.replace(/\ /g, "-"); console.log(params)
输出结果:hello-word
原文地址:https://www.cnblogs.com/guoliping/p/9798694.html
时间: 2024-10-08 20:04:18
问题描述
把一个字符串里的所有空格转换为横线
var str = "hello word"; var params=str.replace(/\ /g, "-"); console.log(params)
输出结果:hello-word
原文地址:https://www.cnblogs.com/guoliping/p/9798694.html