Subject: | Possible problem when searching with non-ascii chars |
(Version 1.10.13 is installed)
I suspect a problem when using non-ASCII characters in Yahoo::Search. A
test script exhibiting the problem is attached. There are only results
if using one of the search terms without high-bit characters. All sample
search terms give results if used in Yahoo's web page.
Regards,
Slaven
Subject: | yahoosearch.pl |
#!/usr/bin/perl -w
use Yahoo::Search;
use Data::Dumper;
@Results = Yahoo::Search->Results(#Doc => 'dudenstraße kreuzberg site:luise-berlin.de',
#Doc => 'mehringdamm kreuzberg site:luise-berlin.de',
#Doc => 'columbiadamm site:luise-berlin.de',
Doc => 'eylauer straße site:luise-berlin.de',
AppId => "just testing"
);
$Data::Dumper::Useqq = 1;
warn Dumper \@Results;
__END__