If there is documentation on this I wasn't able to find it, so could someone help me out please. I wanna parse this website that doesn't have an rss feed. But it has a link under each of the articles to read the full article.
Code:
<a href="/blogs/hunting/2010/08/guest-blog-5-reasons-plant-food-plots-now">Read Full Post</a>
So my question is how could I conduct a search for "Read Full Post" and get the href ?
My thoughts were something along the line of
so if i have links
Code:
1. <a href="/blogs/test1">Read Full Post </a>
2. <a href="/blogs/test2">Read Full Post </a>
Then I would then only process the links of /blogs/test1 and /blogs/test2
thanks for the help