我想在字符串中搜索“[E1010]”或“[E1011]”或“[E1012]”。目前,我只能在不使用方括号 [] 的情况下成功搜索。如何调整我的正则表达式以包含括号括起来的文本,因为它在我的 sClientError 变量中。
谢谢!
string sClientErrors = "Bla Blah \"30\" [E1011]\r\nBlah Blah"44\" [E1012]";
Regex myRegexE10 = new Regex(@"\bE1010\b");
Regex myRegexE11 = new Regex(@"\bE1011\b");
Regex myRegexE12 = new Regex(@"\bE1012\b");
if (myRegexE10.IsMatch(sClientErrors) || myRegexE11.IsMatch(sClientErrors) || myRegexE12.IsMatch(sClientErrors))
{
// do code here...
}