in reply to Read text from HTML file and display it
OR, if you have lynx on your system,
you can do like so:
use warnings; use strict; my $filename = $ARGV[0]; my $ascii = system("lynx -dump $filename"); print $ascii;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Read text from HTML file and display it
by Lotus1 (Vicar) on Oct 29, 2012 at 20:35 UTC |