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.
当字符串不是 1234、不是 6789 和不是空白时,我需要一个匹配的 RegEx。
RegEx 引擎是捆绑在 JDK 6 中的引擎,如果这很重要的话。
谢谢
尝试使用负面展望:
^(?!.*1234.*$)(?!.*5677.*$)(?!=\s*$).+
这种消极的前瞻应该起作用:
^(?!.*?\b(1234|5677)\b).+$
\b
11234
56777
.+