What $! In perl?
No Answer is Posted For this Question
Be the First to Post Answer
Try pattern matching for the following: 1) 10.111.23.11 2) /root/abc/cde/fgg/ac.xml --> Get file name without extention. 3) /root/abc/ac.xml/fgg/ac.xml --> Get file name without extention. 4) What does "DIE" meant in PERL? 5) chomp 6) "This is saturday" --> Print the weekday number. 7) 11-2-2009 --> Print the name of the month. 8) Reverse the string without using func in C.
How do I send e-mail from a Perl/CGI program on a Unix system?
What can be done for efficient parameter passing in perl? Explain.
What does last statement do in perl?
What is perl scripting?
Where the command line arguments are stored and if you want to read command-line arguments with Perl, how would you do that?
What does the q{ } operator do?
what are the three groups involved in information sharing?
What are the advantages of perl programming?
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?
Why does Perl not have overloaded functions?
How do I replace every TAB character in a file with a comma?