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.
我有下一个正则表达式
\w*\|(?<PORT>\w*)\|(?<NAME>\w*)\|
我想得到任何匹配,除了PORT等于 220
PORT
例如:
0|220|Camry|- 必须排除匹配
0|220|Camry|
0|112|Polo|- 可以匹配
0|112|Polo|
使用负前瞻:
\w*\|(?!220\|)(?<PORT>\w*)\|(?<NAME>\w*)\| ^^^^^^^^^