本帖最后由 王晨 于 2012-12-24 12:36 编辑
- private void btnConfirm_Click(object sender, System.EventArgs e)
- {
- string pattern = @"\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*";//规定格式
- string strEmail = TextBox1.Text.Trim();//用户输入的邮箱
- if( System.Text.RegularExpressions.Regex.IsMatch(strEmail ,pattern) )//判断是否匹配
- {
- Label1.Text = "格式正确";
- }
- else
- {
- Label1.Text = " 格式不正确!";
- }
- }
复制代码 这个我记得可以用,也是以前做课程设计时借鉴别人的,你试试吧! |