diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-07-27 10:48:27 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-07-27 10:48:27 +0000 |
commit | f29c64d6c131b79fab4ecd5f3a3b5afc6803e2a1 (patch) | |
tree | 21d34c8d4e640471566ce9971e57ab8c8213b42e /pod/perlfaq9.pod | |
parent | 82839a9d866c50672322b6c8ebe25182b233dcd3 (diff) | |
download | perl-f29c64d6c131b79fab4ecd5f3a3b5afc6803e2a1.tar.gz |
here lies 5.005_58
p4raw-id: //depot/perl@3797
Diffstat (limited to 'pod/perlfaq9.pod')
-rw-r--r-- | pod/perlfaq9.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlfaq9.pod b/pod/perlfaq9.pod index 91d432e443..2443fc9cdb 100644 --- a/pod/perlfaq9.pod +++ b/pod/perlfaq9.pod @@ -76,7 +76,7 @@ stamp prepended. =head2 How do I remove HTML from a string? -The most correct way (albeit not the fastest) is to use HTML::Parse +The most correct way (albeit not the fastest) is to use HTML::Parser from CPAN (part of the HTML-Tree package on CPAN). Many folks attempt a simple-minded regular expression approach, like @@ -173,7 +173,7 @@ through proxies: # or print ASCII from HTML from a URL # also need HTML-Tree package from CPAN use LWP::Simple; - use HTML::Parse; + use HTML::Parser; use HTML::FormatText; my ($html, $ascii); $html = get("http://www.perl.com/"); |