gpt4 book ai didi

regex - Perl 正则表达式/foo|bar/否定

转载 作者:行者123 更新时间:2023-12-01 22:56:15 25 4
gpt4 key购买 nike

/\d/         # contains a digit
/^\D*$/ # doesn't contain a digit

/[abc]/ # contains either the letter a, b, or c
/^[^abc]*$/ # doesn't contain a, b, or c

/foo|bar/ # contains foo or bar
/???????/ # doesn't contain foo or bar

谁能帮我解决这个问题?我找不到任何解决方案,但我需要一个正则表达式来否定这个没有任何可编程逻辑。

最佳答案

您可以使用否定先行断言:

/^(?!.*(?:foo|bar)).*$/    # doesn't contain foo or bar

See it

关于regex - Perl 正则表达式/foo|bar/否定,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10547518/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com