我有一些正则表达式,我必须在其中捕获字符串中的所有匹配项并将它们推送到某个集合并遍历匹配项以做一些事情。
Regex regx = new Regex(@"{{\w+}}");
Match m = regx.Match(str);
string sel = m.Value;
string actualProp = sel.Substring(2, sel.Length - 4);
str = Regex.Replace(str, actualProp, x);
我有前:字符串:{{name}} 是 {{name.child}}
所以我必须把所有两场比赛都收集起来,我不知道怎么解决plz.....