本文介绍了如何在Windows应用程序中验证pin码和移动号码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想验证密码不小于6位,移动号码不小于10位。所以请给我建议。
i want to validate pincode is not less than 6 digit and mobile no is not less than 10 digit . so please give me suggestion .
推荐答案
^\d{6,}
手机:
Mobile:
^\d{10,}
如何使用正则表达式,请举个例子?
winforms
"how to use regex, please give an example?"
"winforms"
private Regex pinCode = new Regex(@"^\d{6,}
这篇关于如何在Windows应用程序中验证pin码和移动号码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!