我有以下正则表达式来匹配 Ip:Port 表单 html 代码,但出于某种原因,我只返回了第一个匹配项,然后它就停止了。
我的代码:
Match m = Regex.Match(_theHtmlCode, @"\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\:\d{1,8}\b", RegexOptions.IgnoreCase);
if (m.Success)
{
if(m.Groups[0].Value != "")
{
resultsFound.Add(m.Groups[0].Value);
}
}
有什么想法可以让我将所有匹配项添加到 resultsFound 中吗?