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.
我怎样才能找到每个字符串的正则表达式不以 AA 或 AD 或 ADL 开头。
<<[[^AA][^AD][^ADL][a-zA-Z0-9-_]*]>> 它不起作用。
您可以使用负前瞻:
^(?!AA|ADL?)