problem scraping multiple patterns
I want to use these extractor patterns
for this url:
http://www.detelefoongids.nl/bg/-/w-hondenschool/1
'preview_~@hondenschool@~<
'street-address'>~@adres@~<
'postal-code'>~@postcode@~<
'locality'>~@plaats@~<
'tel'>~@telefoon@~<
'url'>
'mailto:~@email@~'
when I test the patterns one by one they are all working fine.
when I put them together like shown above nothing is found.
Also every combination of patterns can not be found.
Whe I do the same thing for this url:
http://www.dogsite.nl/showkennel.php
and these patterns is works fine.
What could be wrong?
Thanks.
Bert.
Most of the time things like
Most of the time things like this mess up due to a little, unseen variation. The best thing to do is to use a special token named DATARECORD, then make an extractor like:
~@DATARECORD@~
</tr>
Then use sub-extractors to get each individual point. Should work fine.