标签: javascript replace
我希望像
[ “[\” 232323232 \ “]”, “909090909”]
进入
[“232323232”,“909090909”]
用空格替换所有特殊字符(但不是最外面的方括号中的双引号和逗号)。
我试过这个组合,但没有成功。谢谢你的帮助!
,
答案 0 :(得分:1)
你可以使用一个正则表达式来尝试你想要替换的两种情况:
/home/abc/.netrc /home/xyz/.netrc ... ... /use/.nitric
See the live example