| Newsgroups |
perl.cvs.perlfaq |
| Message-ID |
<[email protected]> |
cvsuser 02/05/23 08:47:37
Modified: . perlfaq6.pod
Log:
===> I put a regular expression into $/ but it didn't work. What's wrong?
changed example to use IO::File instead of FileHandle
Revision Changes Path
1.11 +2 -2 perlfaq/perlfaq6.pod
Index: perlfaq6.pod
===================================================================
RCS file: /cvs/public/perlfaq/perlfaq6.pod,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -w -r1.10 -r1.11
--- perlfaq6.pod 7 Apr 2002 18:32:57 -0000 1.10
+++ perlfaq6.pod 23 May 2002 15:47:37 -0000 1.11
@@ -1,6 +1,6 @@
=head1 NAME
-perlfaq6 - Regular Expressions ($Revision: 1.10 $, $Date: 2002/04/07 18:32:57 $)
+perlfaq6 - Regular Expressions ($Revision: 1.11 $, $Date: 2002/05/23 15:47:37 $)
=head1 DESCRIPTION
@@ -166,7 +166,7 @@
close FH;
## Get a read/write filehandle to it.
- $fh = new FileHandle "+<file";
+ $fh = new IO::File "+<file";
## Attach it to a "stream" object.
use Net::Telnet;