我在下面有一段代码,我试图用它来匹配中间可以更改的字符串的开头和结尾。我首先试图让这个例子工作,有人可以告诉我这个代码的错误以及为什么它根本不匹配。
string pattern = @"/\/>[^<]*abc/";
string text = @"<foo/> hello first abc hello second abc <bar/> hello third abc";
Regex r = new Regex(pattern, RegexOptions.IgnoreCase);
Match m = r.Match(text);