Re: perlfaq6: I put a regular expression into $/ but it didn't work. What's wrong?

2004-10-30 Thread Robert Spier
> + > +use File::Stream; > +my $stream = File::Stream->new($filehandle); > + > +$/ = qr/\s*,\s*/; > +print "$_\n" while <$stream>; I know this is the example from the docs, but you end up still putting

perlfaq4: What happens if I add or remove keys from a hash while iterating over it?

2004-10-30 Thread _brian_d_foy
The documentation for each() says that we can only delete the most recent key without ill effects, whereas the perlfaq answer made it sound as if we can delete any key. albook_brian[731]$ cvs diff -u -d perlfaq4.pod Index: perlfaq4.pod ===

perlfaq3: Is there an IDE or Windows Perl Editor?

2004-10-30 Thread _brian_d_foy
* added Eclipse to IDE list * arranged IDE list in alphabetical order * Updated platforms for Komodo * Updated info on Visual Perl and gave it its own bullet Index: perlfaq3.pod === RCS file: /cvs/public/perlfaq/perlfaq3.pod,v re

perlfaq6: I put a regular expression into $/ but it didn't work. What's wrong?

2004-10-30 Thread _brian_d_foy
* Mention File::Stream Index: perlfaq6.pod === RCS file: /cvs/public/perlfaq/perlfaq6.pod,v retrieving revision 1.26 diff -u -d -r1.26 perlfaq6.pod --- perlfaq6.pod25 Oct 2004 18:47:04 - 1.26 +++ perlfaq6.pod

perlfaq7: How do I temporarily block warnings?

2004-10-30 Thread _brian_d_foy
* mention warning categories and perllexwarn Index: perlfaq7.pod === RCS file: /cvs/public/perlfaq/perlfaq7.pod,v retrieving revision 1.17 diff -u -d -r1.17 perlfaq7.pod --- perlfaq7.pod19 Oct 2004 22:53:50 - 1.17 ++

Re: perlfaq6: I put a regular expression into $/ but it didn't work. What's wrong?

2004-10-30 Thread _brian_d_foy
In article <[EMAIL PROTECTED]>, Robert Spier <[EMAIL PROTECTED]> wrote: > > +use File::Stream; > > +my $stream = File::Stream->new($filehandle); > my $stream = File::Stream->new($filehandle, > separat