summaryrefslogtreecommitdiff
path: root/pod/perlfaq9.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-07-27 10:48:27 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-07-27 10:48:27 +0000
commitf29c64d6c131b79fab4ecd5f3a3b5afc6803e2a1 (patch)
tree21d34c8d4e640471566ce9971e57ab8c8213b42e /pod/perlfaq9.pod
parent82839a9d866c50672322b6c8ebe25182b233dcd3 (diff)
downloadperl-f29c64d6c131b79fab4ecd5f3a3b5afc6803e2a1.tar.gz
here lies 5.005_58
p4raw-id: //depot/perl@3797
Diffstat (limited to 'pod/perlfaq9.pod')
-rw-r--r--pod/perlfaq9.pod4
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/");