如何验证需要两个十六进制字符的输入?
我想验证文本框中的字符串值。
验证要求为:
- 恰好 2 个字符
- 仅十六进制字符
我该如何执行此操作?
I want to validate a string value from textbox.
Validation requirements are:
- Exactly 2 characters
- Hex characters only
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用带有表达式的正则表达式验证器控件:
^[0-9A-F]{2}$
Use a Regex validator control with the expression:
^[0-9A-F]{2}$
您可以使用正则表达式,例如:
You could use a regular expression, something like:
使用它进行十六进制字符控制
use this for hex character control
//使用此方法并在调用它之前..传递或解析出字符串.Substring(0,2)
//Use this method and before calling it ..pass or parse out the string.Substring(0,2)