除了三个字符:|、^ 和 ~(竖线、插入符号和波形符)之外,接受任何内容的最短正则表达式是什么?
我有一个正则表达式,但它很大。我指定了我允许的字符集。 这使得它成为一个很大的正则表达式。如果我可以指定相反的内容,即仅指定我不接受的字符,会更简单吗?
^[^\|\^~]*$
但它不起作用。有什么线索吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这会匹配在任何地方都不包含这三个字符的字符串:
而这会匹配在任何地方包含这三个字符中任何一个的所有字符串:
这两种模式是等效的,因此您可以使用第一个模式,也可以使用第二个带否定的模式。
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.
您不得在
[]
内转义|
或~
。使用^[^|^~]*$
。即第一个示例匹配,其他三个示例按要求失败。
You mustn't escape
|
or~
within[]
. Use^[^|^~]*$
.i.e. the first example matches, the other three fail as required.