Re: file into memory

2002-12-24 Thread Narayan Kumar
I am very new to perl. I dont think I get your question. How about using "foreach" instead of "while". foreach ( @xx ) { . } while $file ( @xx ) will actually be interpolated to, $file("peter 141444 \noscar e324345 \nsimon j85547\n"); which is as good as $file(0); and will never work. Nara

Perl Manuals for Modules

2002-12-12 Thread Narayan Kumar
I am too new perl. How do I see a list of all the modules that are supported by my perl, and what do I do to "man" those modules. Narayan -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: formatting output

2002-12-11 Thread Narayan Kumar
Hope this is what you need \r -> return; \t -> tab \f -> form feed \b -> backspace \a -> bell \e -> escape \007 -> Any octal ASCII value ( here, 007 = bell ) \x7f -> Any hex ASCII value ( here, 7f = delete ) .. ... >From the Llama Book pg: 24 Narayan On Wed, 11 Dec 2002, Mariusz w