哪位高手知道此程序问题在哪,感谢!
private void textBox1_TextChanged(object sender, EventArgs e){
string s1 = textBox1.Text;
textBox1.Text = "";
MatchCollection m1 = Regex.Matches(s1, @"^[\u4e00-\u9fa5]{0,}$");
foreach (Match m in m1)
{
textBox1.Text += m.ToString();
}
k += textBox1.Text;
textBox1.Text = k;
textBox1.SelectionStart = textBox1.Text.Length;
}