正则表达式用于空格,然后是行尾

发布于 2024-08-21 18:23:46 字数 82 浏览 8 评论 0原文

我正在努力找到这个 - 我需要删除所有空行,这些空行之前可能有空格

另一种方法是在 Excel 中搞乱 - 我正在使用 TextPad

I am struggling to find this - I need to strip all empty lines which might have white space before them

The alternative is messing about in Excel - I am using TextPad

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

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

发布评论

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

评论(5

救赎№ 2024-08-28 18:23:46

根据这篇博客文章wordpress.com,它是

^[[:space:]]*$

According to this blog post on wordpress.com, it's

^[[:space:]]*$
仲春光 2024-08-28 18:23:46
^\s*$

如果你有 Perl 兼容的正则表达式。

^\s*$

If you've got perl-compatible regex.

极致的悲 2024-08-28 18:23:46

对于任何可能包含空格的空行,一个简单的正则表达式是:

^[ \t]*$

A simple reg ex for any empty line which may contain white space is:

^[ \t]*$
涙—继续流 2024-08-28 18:23:46

在文本板中:首先查找空白行:F5,然后 ^\s*$

接下来标记它们:在查找对话框中,单击“标记全部”按钮。您会在每个空行旁边看到右插入符。

然后删除它们:选择“编辑”->“删除”->“书签行”

In Textpad: First find blank line: F5, then ^\s*$

Next mark 'em: in the find dialog, click the "Mark All" button. You see right-carets next to each blank line.

Then delete 'em: Select Edit->Delete ->Bookmarked Lines

舟遥客 2024-08-28 18:23:46

由于您想删除该行,因此这是行不通的:

^\s*$

您需要删除空行后面的换行符:

^\s*$[\n\r]*

Since you want to remove the line, this will not do:

^\s*$

You need to remove the line break after the empty line:

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