我有一个通过WinForms浏览器控件显示HTML的表单。我希望实现搜索浏览器的内容。要求是:
有关如何最好地实施此建议的任何建议吗?
答案 0 :(得分:0)
在这些场景中,Regex是你的朋友,一些开源正则表达式查看器具有这种功能,看看http://www.sellsbrothers.com/tools/你可以看看他们是如何实现它的。
答案 1 :(得分:0)
如何创建MatchCollection并使用它?
MatchCollection matches = new Regex().Matches(search_keyword);
int currentIndex = 0;
然后只需使用currentIndex从您的集合中获取元素
if(currentIndex > 0) --currentIndex; // get previous search result
matches[currentIndex];
示例代码: