how to extract pin_code,phone_number,year from text file using
regular expressions in perl
No Answer is Posted For this Question
Be the First to Post Answer
What can be done for efficient parameter passing in perl? Explain.
What does undef function in perl?
What does delete function do in perl?
How do you give functions private variables that retain their values between calls?
what r the future opportunities in PERL/LINUX after 3 years ??
Explain tk?
What does last statement do in perl?
Which functions in Perl allows you to include a module file or a module and what is the difference between them?
Explain which feature of PERL provides code reusability?
Comment on the scope of variables in perl.
i have a folder called 'error' and in that, i have error log files which are generated by the build, now i want to findout the string 'error' from each log file and that error has to be copied into the another file called 'analysis'. how do you do this in perl?
my @array=('data1','data2'); my @array1=('data1','data2'); my ($i,$k); $i=7; $k=7; while($i){ $array [++$#array] = 'ree'; $i--; print "@array"; } while($k){ push(@array1,'ree'); $k--; print "@array1"; } Are these two while loop are doing the same functionality ? What may be the difference?