1. 程式人生 > >使用正則表示式驗證漢字輸入

使用正則表示式驗證漢字輸入

實現效果:

  

知識運用:

  

 

實現程式碼: 

        private void button1_Click(object sender, EventArgs e)
        {
            if (!textBox1.Text.Equals(string.Empty))
            {
                if (System.Text.RegularExpressions.Regex.IsMatch(textBox1.Text, "[\u4e00-\u9fa5]{1,}"))
                    MessageBox.Show("任務完成,賞啤酒一箱", "恭喜!");
                else
                    MessageBox.Show("看來你需要的是再來一次喲!!", "細心點"); textBox1.Text = "";
            }
        }