| Newsgroups |
perl.cvs.perlfaq |
| Message-ID |
<[email protected]> |
cvsuser 02/08/17 10:09:11
Modified: . perlfaq9.pod
Log:
* How do I extract URLs?
+ mentioned URI::Find for plain text sources
Revision Changes Path
1.12 +3 -1 perlfaq/perlfaq9.pod
Index: perlfaq9.pod
===================================================================
RCS file: /cvs/public/perlfaq/perlfaq9.pod,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -w -r1.11 -r1.12
--- perlfaq9.pod 8 Jul 2002 03:42:27 -0000 1.11
+++ perlfaq9.pod 17 Aug 2002 17:09:11 -0000 1.12
@@ -1,6 +1,6 @@
=head1 NAME
-perlfaq9 - Networking ($Revision: 1.11 $, $Date: 2002/07/08 03:42:27 $)
+perlfaq9 - Networking ($Revision: 1.12 $, $Date: 2002/08/17 17:09:11 $)
=head1 DESCRIPTION
@@ -155,6 +155,8 @@
C<HTML::LinkExtor> or C<HTML::Parser>. You might even use
C<HTML::SimpleLinkExtor> as an example for something specifically
suited to your needs.
+
+You can use URI::Find to extract URLs from an arbitrary text document.
Less complete solutions involving regular expressions can save
you a lot of processing time if you know that the input is simple. One