我想替换.JavaScript 字符串中所有出现的点()
.
例如,我有:
var mystring = 'okay.this.is.a.string';
我想得到:okay this is a string。
okay this is a string
到目前为止,我尝试过:
mystring.replace(/./g,' ')
但这最终会将所有字符串替换为空格。
您需要转义,.因为它在正则表达式中具有“任意字符”的含义。
mystring = mystring.replace(/\./g,' ')