write a Perl script to find a particular word in a paragraph???
Answer / guest
[code]
my $pat;
$pat='Using push we can add multiple items into an array in
a single instance.
If we are trying to add a module or library files in
our program using require or use statement then it will
search that module or library files in the Perl\'s default
search path.
The statement use lib is used to add the directories
to default search path.
So if the module or library file is not located in
the Perl\'s default search path then it will find the
library files in the path we have given with the use lib
$path.';
if($pat=~/push/)
{
print "Pattern push get matched\n";
}
[/code]
| Is This Answer Correct ? | 7 Yes | 0 No |
Give an example of the -i and 0s option usage.
how to install a package in perl ????
How to print escaping characters inside a string in perl?
Write syntax to use grep function?
What are numeric operators in perl?
Differentiate use and require?
What is hash?
Write a simple regular expression to match an IP address, e-mail address, city-state-zipcode combination.
Explain returning values from subroutines?
Explain the difference between my and local?
What is warn function in perl?
What arguments do you frequently use for the Perl interpreter and what do they mean?