码迷,mamicode.com
首页 > 其他好文 > 详细

如果输入的不是英文字母或者数字或者汉字,则返回false

时间:2015-07-20 12:36:23      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

 public partial class Form1 : Form 

  •     { 
  •         public Form1() 
  •         { 
  •             InitializeComponent(); 
  •         } 
  •  
  •         private void button1_Click(object sender, EventArgs e) 
  •         { 
  •             string input = textBox1.Text.Trim(); 
  •             if (chkInput(input)) 
  •                 MessageBox.Show("true"); 
  •             else 
  •                 MessageBox.Show("false"); 
  •         } 
  •  
  •         /// <summary> 
  •         /// 如果输入的不是英文字母或者数字或者汉字,则返回false 
  •         /// </summary> 
  •         /// <returns></returns> 
  •         private bool chkInput(string input) 
  •         { 
  •             Regex regex = new Regex(@"^[\u4E00-\u9FFFA-Za-z0-9]+$"); 
  •             return regex.IsMatch(input); 
  •         } 
  •     } 

 

如果输入的不是英文字母或者数字或者汉字,则返回false

标签:

原文地址:http://www.cnblogs.com/DTWolf/p/4660802.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!