I would like to screen scrape a forum page. I just want to scrape the hyperlinks to the threads and nothing else.
I have looked in to the source code and seen a pattern emerging when the thread title is displayed
<a class="title threadtitle_unread" href="{url}">{title of thread}</a>
So basically what I need to do is the following
1) Get the webpage source code
2) Find instances of code which have <a class="title threadtitle_unread" href="{url}">{title}</a>
3) Print these instances
My end goal is to create a central page of all news from various sites for my football club.