用正则 string str="字符串"; if (Regex.IsMatch(str, @"^[^<>""]*$")) { Console.WriteLine("没有"); } else { Console.WriteLine("有"); } 追问 说Regex上下文不存在 追答 加个using System.Text.RegularExpressions;
foreach(control c in this.controls){if(c is textbox & c.name=需要筛选的条件)){return ((textbox)c).text.indexof("<")>=0}}