怎么样?空格和行返回“已保存”?
如果您想使用空格、制表符、换行符和回车符,如何在 JavaScript 中“选择它们”?
x = $('pre').html().replace(/(\r\n|\n|\r)/gm, "#");
编辑:^对于换行和回车不起作用。
现在,制表符是 /(\t)/,空格是 /( )/。
If you want to toy with white-spaces, tabs, linefeed and carriage-return, how do you "select them" in javascript?
x = $('pre').html().replace(/(\r\n|\n|\r)/gm, "#");
edit : ^Does not work for linefeed and carriage-return.
Now, tabs are /(\t)/ and spaces are /( )/.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你的例子确实有效。
http://jsfiddle.net/RSfN5/1/
Your example actually works.
http://jsfiddle.net/RSfN5/1/
您始终可以转义字符串,然后替换转义的值 - 然后再次转义 - 例如
You could always escape the string then replace the escaped values - then unescape again - e.g.