正则表达式匹配超过 2 个空格但不匹配新行
我想替换字符串中所有超过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将要匹配的空白字符放入字符类中。例如:
匹配 2 个或多个空格或制表符。
您还可以这样做:
匹配除
\r
和\n
之外的任何空白字符至少两次(请注意S
中的大写S
) code>\S 是[^\s]
的缩写)。Put the white space chars you want to match inside a character class. For example:
matches 2 or more spaces or tabs.
You could also do:
which matches any white-space char except
\r
and\n
at least twice (note that the capitalS
in\S
is short for[^\s]
).正则表达式仅针对两个空格:
[ ]{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.
您的意思是严格多于两个还是至少两个?如果是前者,请在量词中使用 3。否则将其保留为两点。
一种方法是使用德摩根定律:
将其读作“非非空白、非回车或非换行”,或者在解开双负之后,“空白但不是回车或换行”。 ”
\S
中的大写字母表示\s
的补集。为了让我们的语法老师高兴,说你想要什么,而不是你不想要什么。
它匹配制表符、换页符、垂直制表符或空格。对于您的输入来说,这可能有点过分了,而简单的输入
就足够了。
有关更多详细信息,请参阅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:
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.
This matches, tab, formfeed, vertical tab, or space. That may be overkill for your input, where a simple
may suffice.
For lots more detail, see this related answer from 2010.