Thread Webspider / Robot um Kontostand auszulesen
(16 answers)
Opened by chess at 2012-12-11 16:31 Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 #!perl $line = ' <p> Aktuelles Guthaben: <br /> <span class="price">0,01 €</span> </p> '; my ($preis) = $line =~ m/Aktuelles Guthaben:\s<br\s+\/>\s+<span class=\"price\">([,0-9]+) \;&euro\;<\/span>/im; print $preis, "\n"; So klappts auch mit ... ;) |