Why aren't Perl's patterns regular expressions?
What does this symbol mean '->'?
How do I sort a hash by the hash value?
Where the command line arguments are stored and if you want to read command-line arguments with Perl, how would you do that?
I have created a CGI-based page,after entering all the values in to the fields, How to get the output on the web browser using Perl
How do you match one letter in the current locale?
What is -> symbol 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
what is CPAN?
What is the use of -w, -t and strict in Perl?
How to convert strings into an array 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 are scalars?