本文整理汇总了C#中System.Text.RegularExpressions.Match.OrderByDescending方法的典型用法代码示例。如果您正苦于以下问题:C# Match.OrderByDescending方法的具体用法?C# Match.OrderByDescending怎么用?C# Match.OrderByDescending使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Text.RegularExpressions.Match
的用法示例。
在下文中一共展示了Match.OrderByDescending方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Expand
public virtual string Expand(IList<string> parms, IList<string> vals, ArticleDto activeArticle, IList<ArticleDto> allArticles)
{
IDictionary<string, string> vars = prepareVariables(parms, vals, activeArticle);
Regex replaceRegex = new Regex(@"%([^\)%]+)%");
string expandedText = macroText;
MatchCollection matches = replaceRegex.Matches(expandedText);
Match[] matchArr = new Match[matches.Count];
matches.CopyTo(matchArr, 0);
IEnumerable<Match> sortedMatches = (IEnumerable<Match>)matchArr.OrderByDescending(x => x.Index);
foreach (Match match in sortedMatches)
{
string preText = expandedText.Substring(0, match.Index);
string postText = expandedText.Substring(match.Index + match.Length);
string parmName = match.Groups[1].Value;
string value = "";
if (vars.ContainsKey(parmName)) value = vars[parmName];
expandedText = preText + value + postText;
}
return expandedText;
}