我正在使用这个正则表达式
寻找符号/[-!$%^&*()_+|~=`{}\[\]:";'<>?,.\/]/g
我想在这两个符号之间添加空格。
例如:"Hello,my name is Max"
我希望此字符串看起来像"Hello , my name is Max"
。
我该怎么做?感谢。
答案 0 :(得分:2)
您需要的代码是:
result = subject.replace(/[\-!$%^&*()_+|~=`{}[\]:";'<>?,.\/]/g, " $& ");
答案 1 :(得分:1)