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.
我需要验证输入,以便文本框中的“单个”单词不能包含超过 3 个连续的大写字母。以下似乎不起作用:
[A-Z]{3,}
这是一个 VB 应用程序。
非常感谢。
这种模式应该做^(?!.*[A-Z]{4}).* 一个负前瞻,看不到 4 个连续的大写字母
^(?!.*[A-Z]{4}).*