Html scraping made easy.

Elipsis

Another problem we usually had when using Scraper was that it is somewhat easier to create a start point than the ending point. To solve this, we created a matcher that simply tells scraper to ignore anything from that point on. Example:
<h1>Duration: ${content} h...
will match:
<h1>Duration: 8 h/month</h1>
(will retrive 8) and
<h1>Duration: 16 hours per week and anything you want here.
(will retrieve 16) But won't match:
<h1>Duration: 2 days</h1>