Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要一个匹配“房子”,“黑房子”......(*房子)的正则表达式,但不是“白宫”。
\b^(白色)\b* 房子
那是我的尝试之一,但它不符合我的需要。有任何想法吗??谢谢!
如果您的语言支持它,您想使用否定的lookbehind:
.*(?<!white\s)\bhouse\b
在此处查看现场演示。