作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将所有斜杠更改为一个字符串,但找不到解决方案。这是我的代码:
var str = 'some\stack\overflow',
replacement = '/';
var replaced = str.replace("\", "/");
console.log(replaced);
console.log("I want to see this: some/stack/overflow");
最佳答案
尝试使用全局 (g) 标志的正则表达式。
var str = 'some\\stack\\overflow';
var regex = /\\/g;
var replaced = str.replace(regex, '/');
关于javascript - .replace() 函数不会用反斜杠替换正斜杠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18866286/
我是一名优秀的程序员,十分优秀!