Thread Probleme mit HTML::Parser und LWP::UserAgent (8 answers)
Opened by fealXX at 2012-03-26 13:18

GwenDragon
 2012-03-26 18:49
#157053 #157053
User since
2005-01-17
14782 Artikel
Admin1
[Homepage]
user image
Du verwendest match falsch.

Lies bitte mal auch http://perldoc.perl.org/perlrequick.html und http://perldoc.perl.org/perlre.html.

Statt
Code (perl): (dl )
    if($linkziel =~ ("/http/i")){

das
Code (perl): (dl )
    if($linkziel =~ m/^http/i){

nehmen. ;)
Last edited: 2012-03-26 18:50:56 +0200 (CEST)

View full thread Probleme mit HTML::Parser und LWP::UserAgent