use warnings; use strict; use WWW::Wikipedia; use Encode; my $wiki = WWW::Wikipedia->new(); my $entry = $wiki->search( 'Rotation' ); my @languages_available = $entry->languages(); foreach (@languages_available) { print "$_\n"; } __END__ en
Maybe you can use Data::Dumper to see what $entry has for you:
use Data::Dumper; print Dumper($entry);
In reply to Re: WWW::Wikipeida getting translation
by toolic
in thread WWW::Wikipeida getting translation
by welle
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |