0

我在下面有一段代码,我试图用它来匹配中间可以更改的字符串的开头和结尾。我首先试图让这个例子工作,有人可以告诉我这个代码的错误以及为什么它根本不匹配。

      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);
4

2 回答 2

3

您不需要分隔符,在 c# 中您只需指定正则表达式:

  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);
于 2011-03-02T14:34:23.677 回答
1

如果只有相关字符串的中间部分会发生变化,那么为什么不使用String.StartsWithandString.EndsWith呢?例如:

var myStringPrefix = "prefix";
var myStringSuffix = "suffix";
var myStringTheChangeling = "prefix random suffix";

if (myStringTheChangeling.StartsWith(myStringPrexix) &&
    myStringTheChangeling.EndsWith(myStringSuffix))
{
    //good to go...
}
于 2011-03-02T14:33:19.167 回答