Thread Query von Hyperlinks sortieren (26 answers)
Opened by mika at 2020-01-28 14:01

mika
 2020-02-09 17:47
#191347 #191347
User since
2010-10-02
168 Artikel
BenutzerIn

user image
Web::Query::LibXML kannte ich noch nicht, aber mit XML::LibXML geht es auch. Wichtig ist nur die Option recover:

Code: (dl )
1
2
3
4
5
my $dom = XML::LibXML->load_html(
string => $code,
recover => 1, # try to recover parse errors and carry on to produce a DOM
suppress_errors => 1, # turn off the error output
);

View full thread Query von Hyperlinks sortieren