标签: c++ winforms visual-studio-2012
我正在使用C ++ Windows窗体应用程序,我想将用户输入限制为仅限某种格式。
例如,我希望用户只能以xxx-xxxxxxx的格式输入电话号码,如果输入不是这种格式,应用程序应该提示错误信息。
我该怎么做?任何帮助,将不胜感激。 :) 提前致谢!
答案 0 :(得分:0)
您应该使用Regex.IsMatch(txtPhone.Text, @"{yourRegexForPhoneFormat}")
Regex.IsMatch(txtPhone.Text, @"{yourRegexForPhoneFormat}")