#!/usr/bin/perl use LWP::Simple; use HTML::Parse; $ENV{"SYSTEMROOT"} = "C:\\windows"; $html = get("http://www.google.com"); $text = parse_html($html)->format; print $text;