Re: What is perl equivalent of scanf in C

2004-08-25 Thread Jenda Krynicky
From: "TapasranjanMohapatra" <[EMAIL PROTECTED]> > All, > Can somebody let me know what is the Perl equivalent of scanf in C. Is > it String::Scanf or there are some other options by which we can take > key board input. Thank You. Tapas We usualy read a line of input by $line = ; remove t

Re: What is perl equivalent of scanf in C

2004-08-25 Thread balaji venkat
Hi, is available to take the keyboard input. Sample Program for you is #! /usr/bin/perl print "Enter the value:\n"; $a = ; print "The value of \$a is $a\n" Regards, V.Balaji. --- TapasranjanMohapatra <[EMAIL PROTECTED]> wrote: > All, > Can somebody let me know what is the Perl equivalen

Re: What is perl equivalent of scanf in C

2004-08-25 Thread Randal L. Schwartz
> "TapasranjanMohapatra" == TapasranjanMohapatra <[EMAIL PROTECTED]> writes: TapasranjanMohapatra> Can somebody let me know what is the Perl TapasranjanMohapatra> equivalent of scanf in C. A good regex can beat the pants off of scanf. I'm so happy never to be constructing a scanf expression

What is perl equivalent of scanf in C

2004-08-25 Thread TapasranjanMohapatra
All, Can somebody let me know what is the Perl equivalent of scanf in C. Is it String::Scanf or there are some other options by which we can take key board input. Thank You. Tapas -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]