Mention how many ways you can express string in Perl?
No Answer is Posted For this Question
Be the First to Post Answer
What are the advantages of c over Perl?
Explain '->' in perl?
How to close a directory in perl?
How do I print the entire contents of an array with Perl?
Remove the duplicate data from @array=(“perl”,”php”,”perl”,”asp”)
How to check the status of airplane mode (enable/disable) in perl for Android mobile?
When do you use perl programming?
What is the purpose of goto expr statement?
What is the difference between for & foreach, exec & system?
Comment on data types and variables in perl.
Consider the following example #! /bin/perl use strict; sub sample { my @arr=(1,2,3,4); return @arr; } my ($a,$b,$c,$d) = &sample; print "$a\n$b\n$c\n$d\n"; In the above code, How can I get the $c without using the arguments such as $a,$b. I don't want to use any array to get the return values.
Perl regular expressions are greedy" what does this mean?