What is grep used for in perl?
No Answer is Posted For this Question
Be the First to Post Answer
How to read a directory in perl?
How to create a directory 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?
What is goto statement in perl?
“Perl regular expressions match the longest string possible”. What is the name of this match?
How to convert strings into an array in perl?
Packing and Unpacking. Hi, I want to get output as 0x23400000345.... in the below example How to get? i tried out, but unable to get the answer $r=0x234; $t=0x345; $y=pack('L L',$t,$r); $x1=unpack('L!',pack('P',$y)); printf("\nThe value is $x1"); I didn't get constant output
Explain the difference between my and local?
How many loop control keywords are there in perl?
How to code in perl to implement the tail function in unix?
What is perl I used for?
Is perl a case sensitive language?