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()
精彩评论