作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在下面的文字中:
text\n\nWhy';
我试图去掉\(包含符号)之后的所有内容,这样我的输出将是:文本
我该怎么做?尝试过:
var s = 'text\n\nWhy';
s = s.substring(0, s.indexOf('\'));
console.log (s)
最佳答案
\n
是一个 escape character换行。您将需要搜索该“字符”。
var s = 'text\n\nWhy';
s = s.substring(0, s.indexOf('\n'));
console.log (s)
关于javascript - 如何在js中的特殊字符\n后 trim 文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40005582/
我是一名优秀的程序员,十分优秀!