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.
如果我的网页中的文本框只能接受空白值或字符“C”,则正则表达式验证器的正则表达式是什么
谢谢
会是这样的:
^C$
这表示只接受一个 C 字符。将字段留空也是可以接受的,因为 RegEx 验证器不会将空字段标记为不正确。