本文介绍了验证文本框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好,
我有一个文本框,应该验证只能输入字母。但是,如果用户输入号码,则应给出错误消息。这个应用程序是windows应用程序。
任何志愿者帮我解决这个特别的问题。
我期待回复这篇文章。
谢谢&此致,
艾莎
解决方案
试用 - > regex.ismatch(yourstring," ^([az])*
Hi All,
I have a textbox that should be validated to enter letters only. However, if the users enter number it should be given error message. This application is windows application.
Any volunteer to help me to solve this particularly problem.
I?m looking forward to answering this post.
Thanks & Regards,
Aisha
解决方案
try out -> regex.ismatch(yourstring,"^([a-z])*
这篇关于验证文本框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!