正则表达式匹配超过 2 个空格但不匹配新行

发布于 2024-10-31 03:51:28 字数 118 浏览 1 评论 0原文

我想替换字符串中所有超过 2 个空格,但不是新行,我有这个正则表达式: \s{2,} 但它也匹配新行。

如何仅匹配 2 个或更多空格而不匹配新行?

我正在使用 c#

I want to replace all more than 2 white spaces in a string but not new lines, I have this regex: \s{2,} but it is also matching new lines.

How can I match 2 or more white spaces only and not new lines?

I'm using c#

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

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

发布评论

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

评论(3

美男兮 2024-11-07 03:51:28

将要匹配的空白字符放入字符类中。例如:

[ \t]{2,}

匹配 2 个或多个空格或制表符。

您还可以这样做:

[^\S\r\n]{2,}

匹配除 \r\n 之外的任何空白字符至少两次(请注意 S 中的大写 S ) code>\S 是 [^\s] 的缩写)。

Put the white space chars you want to match inside a character class. For example:

[ \t]{2,}

matches 2 or more spaces or tabs.

You could also do:

[^\S\r\n]{2,}

which matches any white-space char except \r and \n at least twice (note that the capital S in \S is short for [^\s]).

灼疼热情 2024-11-07 03:51:28

正则表达式仅针对两个空格:
[ ]{2,}
正则表达式中的括号是字符类。意思只是那里的字符。这里只是空间。下面的大括号表示两次或多次。

Regex to target only two spaces:
[ ]{2,}
Brackets in regex is character class. Meaning just the chars in there. Here just space. The following curly bracket means two or more times.

千笙结 2024-11-07 03:51:28

您的意思是严格多于两个还是至少两个?如果是前者,请在量词中使用 3。否则将其保留为两点。

一种方法是使用德摩根定律:

[^\S\r\n]

将其读作“非非空白、非回车或非换行”,或者在解开双负之后,“空白但不是回车或换行”。 ” \S 中的大写字母表示 \s 的补集。

为了让我们的语法老师高兴,说你想要什么,而不是你不想要什么。

[\t\f\cK ]

它匹配制表符、换页符、垂直制表符或空格。对于您的输入来说,这可能有点过分了,而简单的输入

[\t ]

就足够了。

有关更多详细信息,请参阅2010 年的相关答案

Do you mean strictly more than two or at least two? If the former, use three in your quantifier. Otherwise leave it at two.

One way to do it is using De Morgan’s law:

[^\S\r\n]

Read that as “not-not-whitespace or not-carriage-return or not-newline” or, after untangling the double-negative, “whitespace but not carriage return or newline.” The capital in \S means the complement of \s.

To keep our grammar teachers happy, say what you do want rather than what you don’t.

[\t\f\cK ]

This matches, tab, formfeed, vertical tab, or space. That may be overkill for your input, where a simple

[\t ]

may suffice.

For lots more detail, see this related answer from 2010.

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