Sub-Extractor, how to obtain with multiple headers?

I have this piece of code that I would like to extract the Company, Product and all the Commentary Titles, dates and Commentary from.

i.e. I want to obtain the following from the code below.

COMPANY: Siemens
PRODUCT: Siemens/HDX Integrated Eligibility

COMMENTARY_TITLE: Support and Documentation - Positive
DATE: 8/2009
COMMENARY: The support people are very responsive to any issues we come across. The vendor is very proactive in communicating the changes we need to make.
DATE: 2/2009
COMMENTARY: The customer service from HDX is great right now. HDX has made tremendous improvements, so their service is better and more responsive. As we make requests, they are doing a much better job in fulfilling them.

COMMENTARY_TITLE: Functionality and Upgrades - Positive
DATE: 10/2009
COMMENTARY: HDX Eligibility is a transactional product that sits in our Invision HIS. It functions really well, and we do not have any problems with it.

This code below is a snippet of what I'm extracting from.

Siemens

Siemens/HDX Integrated Eligibility

Support and Documentation - Positive

8/2009

The support people are very responsive to any issues we come across. The vendor is very proactive in communicating the changes we need to make.

2/2009

The customer service from HDX is great right now. HDX has made tremendous improvements, so their service is better and more responsive. As we make requests, they are doing a much better job in fulfilling them.

Functionality and Upgrades - Positive

10/2009

HDX Eligibility is a transactional product that sits in our Invision HIS. It functions really well, and we do not have any problems with it.

You would need to invoke an

You would need to invoke an extractor from a script. The instructions are here:

http://community.screen-scraper.com/API/extractData

Can this be accomplished

Can this be accomplished without the professional and enterprise editions?

That method is only in the

That method is only in the Pro & Ent editions, but you might be able to get around using it if you have only one company per page. You make on extractor for the company info, and another to match a single comment, and make it generic enough that it will match all the comments on the page.

Since I am only concerned

Since I am only concerned about one company, I tried to match on a single comment category, comment and date. I retrieve only one comment and date per category and not all dates and comments beneath the category.

From the code above on the original post you can see that there can be multiple Dates and Comments for each Category.

How can this be accomplished, I tried to do with sub_extractors but to no avail.

~@CATEGORY@~

~@COMMENTARY_DATE@~

~@COMMENTARY@~

Based on that I'm still not

Based on that I'm still not sure on how to get all dates/comments by commentary title.

i.e.

COMMENTARY_TITLE: Support and Documentation - Positive
DATE: 8/2009
COMMENARY: The support people are very responsive to any issues we come across. The vendor is very proactive in communicating the changes we need to make.
DATE: 2/2009
COMMENTARY: The customer service from HDX is great right now. HDX has made tremendous improvements, so their service is better and more responsive. As we make requests, they are doing a much better job in fulfilling them.

COMMENTARY_TITLE: Functionality and Upgrades - Positive
DATE: 10/2009
COMMENTARY: HDX Eligibility is a transactional product that sits in our Invision HIS. It functions really well, and we do not have any problems with it.

Right, I was hoping that was

Right, I was hoping that was optional or only one per page. If there are multiple titles per page, you will need that extractData method in Professional/Enterprise.

Please Help!

I'm still not getting it... I have tried to follow the pages on extractData and still cannot get what I'm looking to scrape.
I get only one date and comment per Title.

I need to get all dates and comments per title...i.e.

The file should look like this

TITLE DATE COMMENT
Support and Documentation - Positive 8/2009 The support people are very responsive to any issues we come across.
Support and Documentation - Positive 2/2009 The customer service from HDX is great right now.
Functionality and Upgrades - Positive 10/2009 HDX Eligibility is a transactional product that sits in our Invision HIS.
.
.

Based on the code below. Using the Screen-Scraper Professional.


Support and Documentation - Positive

8/2009

The support people are very responsive to any issues we come across.

2/2009

The customer service from HDX is great right now.

Functionality and Upgrades - Positive

10/2009

HDX Eligibility is a transactional product that sits in our Invision HIS.