- Edited
Are you trying to get a set of entries or a single entry.
I once found myself in the same situation, getting some dates out of a certain webpage and made a service out of it. I made use of regular expressions. Try to narrow it down, but not too much, so that it gives you only the data you want.
In the case of the site you shared, I'd take out the block that am interested in as a whole first. Then I'd try to take out data entries individually.
This could help with your building a RegExpression: http://gskinner.com/RegExr/
It's RegExr in actionscript parlance, but should do the trick.
I once found myself in the same situation, getting some dates out of a certain webpage and made a service out of it. I made use of regular expressions. Try to narrow it down, but not too much, so that it gives you only the data you want.
In the case of the site you shared, I'd take out the block that am interested in as a whole first. Then I'd try to take out data entries individually.
This could help with your building a RegExpression: http://gskinner.com/RegExr/
It's RegExr in actionscript parlance, but should do the trick.