what is the function that is used to identify how many characters are there in a string?
No Answer is Posted For this Question
Be the First to Post Answer
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?
How to turn on Perl warnings? Why is that important?
How do I read command-line arguments with Perl?
What are the different string manipulation operators in perl?
What is the different between array and hash in perl programming?
Write a program that shows the distinction between child and parent process?
How would you replace a char in string and how do you store the number of replacements?
Write syntax to add two arrays together in perl?
Explain perl. What are the advantages of programming in perl?
Explain gmtime() function in perl?
You want to read command-line arguements with perl. How would you do that?
What are perl variables?