我有一条线可以将所有斜杠翻转为一个字符串,并且效果很好。

    **flipSlashes = shortLocString.replace(/\\/g,"/");**


但是,如果我想将它们向后翻转,它就会崩溃。我已经尝试了以下所有方法。我没有很清楚地获得// g语法,因此不知道如何解决它。

    **flipSlashes = shortLocString.replace(///g,"\\");**
    **flipSlashes = shortUrlString.replace(/'/'/g,"\\");**
    **flipSlashes = shortUrlString.replace(///g,"\\");**


任何帮助表示赞赏,
dp

最佳答案

使用(即,必须使用\ /对正则表达式中的/进行转义)

flipSlashes = shortLocString.replace(/\//g,"\\");

关于javascript - javascript替换和斜杠,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35943753/

10-09 17:37