开发者

Get found items as list from regex

Given the foll开发者_运维技巧owing code:

var myList = new List<string> { "red", "blue", "green" };
Regex r = new Regex("\\b(" + string.Join("|", myList.ToArray()) + ")\\b");
MatchCollection m = r.Matches("Alfred has a red and blue tie and blue pants.");

Is there a way to derive a List<string> of the "found" items ("red", "blue", "blue")?


var n = (from Match match in m
         select match.Value).ToList()
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜