gpt4 book ai didi

regex - 为什么 .*(?!Integration)Test 匹配 FooIntegrationTest?

转载 作者:行者123 更新时间:2023-12-04 23:20:31 26 4
gpt4 key购买 nike

我正在尝试编写一个正则表达式来运行所有单元测试但不运行集成测试。单元测试被命名为 FooTest ,集成测试被命名为 BarIntegrationTest , "Foo"和 "Bar"是变量。 I found this article on how to do it and I have solved my problem .但是,它的解决方案是使用这个正则表达式:

(.(?!Integration))*Test

我不明白为什么这个正则表达式不够用:
.*(?!Integration)Test

当我尝试第二个正则表达式时,我的集成测试仍在运行。

最佳答案

您正在使用负面展望,但您想要负面展望:

.*(?<!Integration)Test

您的正则表达式断言“测试”不是“集成”,这当然总是正确的。

关于regex - 为什么 .*(?!Integration)Test 匹配 FooIntegrationTest?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28157446/

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