http://www.perlmonks.org?node_id=615485


in reply to how to read data from a URL

Something like the following should get you going:

use strict; use warnings; use LWP::Simple; my $url = "http://whatev.er"; my $content = get($url); $content =~ s/ /%20/g;

regards,
tomte


An intellectual is someone whose mind watches itself.
-- Albert Camus