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