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.
我有一个注册号文本框,我希望它使用以下格式 2013/123456/25。我想使用正则表达式验证器验证不正确的格式。
确切的格式必须是前4个数字/6个数字/2个数字-->(2013/123456/25)
谢谢您的帮助...
你可以使用这样的东西:
^\d{4}/\d{6}/\d{2}$