标签: c# regex validation
我正在尝试制作一个简单的字母数字和空格验证器,但是以下代码接受sadg_作为有效
sadg_
Regex r = new Regex(@"[^[a-zA-Z0-9\s]+$]"); if (r.IsMatch(txtTheirReference.Text)) //you can't enter non alphanumeric and space