我想用反斜杠替换字符串中未转义的斜杠。但是奇怪的事情发生了:
"\content\hs\gj\home.css".replace(/\\/gi,"/")
返回“contenthsgjhome.css”。我明白,如果将其更改为
"\\content\\hs\\gj\\home.css".replace(/\\/gi,"/")`
然后它将按预期工作,但我无法更改字符串,因为它只是 nodejs 的输出path.join("conetnt", "hs", "gj", "home.css")
。
我该做什么?