有人知道在线尾随空格去除器吗?

发布于 2024-11-02 01:46:03 字数 113 浏览 4 评论 0原文

我有一个 JS 文件(~2000 行)并且想要去除所有尾随空格。我正在使用 Coda,它有一个插件,但它总是使应用程序崩溃。我觉得这是一件很简单的事情,可能有一个在线工具,但我找不到。

提前致谢!

I have a JS file (~2000 lines) and want to strip all trailing whitespace. I am using Coda and it has a plugin but it keeps crashing the app. I feel like this is a simple enough thing where there might be an online tool but I can not find one.

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

北斗星光 2024-11-09 01:46:03

在这里,我给你写了一个小脚本: http://codepad.org/vZNPOF1a

只需将你的代码粘贴到它的位置即可说,在下面的文本区域中,单击提交,然后单击上面的输出链接以获得原始输出。

Here, I wrote you a little script: http://codepad.org/vZNPOF1a

Just paste in your code where it says, in the text area below, click submit, then click on the output link up above to get the raw output.

烟燃烟灭 2024-11-09 01:46:03

试试这个:

var removeLineTrailingWhitespace = function(s) {
  return (""+s).replace(/(^\s+|\s+$)/mg, '');
};
var str = "foo    \n    bar    \n";
removeLineTrailingWhitespace(str); // => "foo\nbar";

Try this:

var removeLineTrailingWhitespace = function(s) {
  return (""+s).replace(/(^\s+|\s+$)/mg, '');
};
var str = "foo    \n    bar    \n";
removeLineTrailingWhitespace(str); // => "foo\nbar";
美煞众生 2024-11-09 01:46:03

将其加载到 Notepad++ 上并按 alt+shift+s

Load it up on Notepad++ and press alt+shift+s

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文