c# 只能輸入字母或者數字 或者退格符 git
方法一:KeyPress正則表達式
private void textBox2_KeyPress(object sender, KeyPressEventArgs e) { if ((e.KeyChar != '\b') &&(!Char.IsLetter(e.KeyChar)) && (!char.IsDigit(e.KeyChar))) { e.Handled = true; } }
方法二: 正則表達式c#
添加引用blog
using System;
using System.Text.RegularExpressions;it