WPF 输入框正则效验

孤街浪徒 提交于 2020-04-09 01:12:34
原文: WPF 输入框正则效验

1.

if (!TelphoneHelper2.IsTelphone(mobile)
{
MessageBox.Show("请录入正确的手机号!", "提示", MessageBoxButton.OK, MessageBoxImage.Information);
return;
}



2.TelphoneHelper2.cs

?
1
2
3
4
5
6
7
8
9
10
public class TelphoneHelper2
    {
        public static bool IsTelphone( string tel)
        {
            String strExp = @"[0-9][0-9][0-9]{9}" ;
            Regex r = new Regex(strExp);
            Match m = r.Match(tel);
            return m.Success;
        }
    }

  

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!