如何删除 MatchCollection 中的重复匹配项
在我的 MatchCollection 中,我得到了相同内容的匹配项。像这样:
string text = @"match match match";
Regex R = new Regex("match");
MatchCollection M = R.Matches(text);
如何删除重复的匹配项,这是最快的方法吗?
假设这里的“重复”意味着匹配包含完全相同的字符串。
In my MatchCollection, I get matches of the same thing. Like this:
string text = @"match match match";
Regex R = new Regex("match");
MatchCollection M = R.Matches(text);
How does one remove duplicate matches and is it the fastest way possible?
Assume "duplicate" here means that the match contains the exact same string.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Linq
如果您使用 .Net 3.5 或更高版本(例如 4.7),则可以使用 linq 删除匹配项的重复项。
.Net 2 或 No Linq
将其放入 hastable 中,然后提取字符串:
Linq
If you are using .Net 3.5 or greater such as 4.7, linq can be used to remove the duplicates of the match.
.Net 2 or No Linq
Place it into a hastable then extract the strings:
尝试
Try