How can you replace the characters from a string and save the number of replacements?
No Answer is Posted For this Question
Be the First to Post Answer
Differences between die and exit.
How to determine strings length in perl?
Explain what is perl language?
How to concatenate strings with perl?
What is perl I used for?
Explain lists ?
If EXPR is an arbitrary expression, what is the difference between $Foo::{EXPR} and *{"Foo::".EXPR}?
Explain split function in perl?
How to replace perl array elements?
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?
You want to add two arrays together. How would you do that?
How to sort arrays in perl?