cztmonk has asked for the wisdom of the Perl Monks concerning the following question:
I try to translate words from english to dutch, using a website (van dale). I use LWP:simple to fetch the url. This works fine.Can anyone tell me which next steps to make?
#!/usr/bin/perl -w use strict; use LWP::Simple; my $html = get "http://www.vandale.nl/opzoeken?pattern=Fetch&lang=en"; die "Couldn't get it!" unless defined $html; print $html;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: lwp::simple question
by Corion (Patriarch) on Jul 19, 2012 at 12:57 UTC | |
|
Re: lwp::simple question
by zentara (Cardinal) on Jul 19, 2012 at 13:00 UTC | |
|
Re: lwp::simple question
by marto (Cardinal) on Jul 19, 2012 at 14:19 UTC | |
by cztmonk (Monk) on Jul 20, 2012 at 20:43 UTC | |
|
Re: lwp::simple question
by daxim (Curate) on Jul 19, 2012 at 12:59 UTC |