除了三个字符:|、^ 和 ~(竖线、插入符号和波形符)之外,接受任何内容的最短正则表达式是什么?

发布于 2024-10-04 22:39:02 字数 144 浏览 2 评论 0原文

我有一个正则表达式,但它很大。我指定了我允许的字符集。 这使得它成为一个很大的正则表达式。如果我可以指定相反的内容,即仅指定我不接受的字符,会更简单吗?

^[^\|\^~]*$

但它不起作用。有什么线索吗?

I have a regex but it is very big. I specify the set of chars that I allow.
That makes it big regex expression. Will it be simpler if I can specify the opposite i.e. just specify what chars I won't accept?

^[^\|\^~]*$

But it is not working. Any clue?

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

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

发布评论

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

评论(2

少年亿悲伤 2024-10-11 22:39:02

这会匹配在任何地方都不包含这三个字符的字符串:

^[^|^~]*$

而这会匹配在任何地方包含这三个字符中任何一个的所有字符串:

[|^~]

这两种模式是等效的,因此您可以使用第一个模式,也可以使用第二个带否定的模式。

This matches strings that do not contain those three characters anywhere:

^[^|^~]*$

While this matches all strings that contain any of those three anywhere:

[|^~]

The two patterns are equivalent, so you could either use the first one, or use the second one with negation.

一笔一画续写前缘 2024-10-11 22:39:02

您不得在 [] 内转义 |~。使用^[^|^~]*$

>>> re.match(r'^[^|^~]*

即第一个示例匹配,其他三个示例按要求失败。

, 'abc') <_sre.SRE_Match object at 0x2dbc4a8> >>> re.match(r'^[^|^~]*

即第一个示例匹配,其他三个示例按要求失败。

, '^') >>> re.match(r'^[^|^~]*

即第一个示例匹配,其他三个示例按要求失败。

, '|') >>> re.match(r'^[^|^~]*

即第一个示例匹配,其他三个示例按要求失败。

, '~')

即第一个示例匹配,其他三个示例按要求失败。

You mustn't escape | or ~ within []. Use ^[^|^~]*$.

>>> re.match(r'^[^|^~]*

i.e. the first example matches, the other three fail as required.

, 'abc') <_sre.SRE_Match object at 0x2dbc4a8> >>> re.match(r'^[^|^~]*

i.e. the first example matches, the other three fail as required.

, '^') >>> re.match(r'^[^|^~]*

i.e. the first example matches, the other three fail as required.

, '|') >>> re.match(r'^[^|^~]*

i.e. the first example matches, the other three fail as required.

, '~')

i.e. the first example matches, the other three fail as required.

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