Example #1
0
        public static IEnumerable <string> ExactHref(this string html)
        {
            var htmlDocument = new HtmlDocument();

            htmlDocument.LoadHtml(html);
            var htmlNode = htmlDocument.DocumentNode;

            var nodes = htmlNode.SelectNodes("//a/@href");

            return(nodes.Select(node => HtmlParsingHelper.GetAttributeValue(node, "href")));
        }