write a Perl script to find a particular word in a paragraph???



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

Post New Answer

More CGI Perl Interview Questions

How do you turn on the perl warnings?

0 Answers  


What are the characteristics of a project that is well suited to Perl?

1 Answers  


What does the command "use strict" do and why should you use it?

2 Answers   Symphony, TCS,


How can I implement the function overloading in Perl ? I read about the operator overloading, I do not know how to implement the function overloading. Thanks in advance ?

0 Answers  


What is v-strings?

0 Answers  






How do I replace every TAB character in a file with a comma?

0 Answers  


What are the different ways to run cgi?

0 Answers  


What is an interpolation in perl?

0 Answers  


How can you create anonymous subroutines?

0 Answers  


Define print() function in perl?

0 Answers  


what are steps to do to lock the sony ericsson mobile with password?

0 Answers  


How many types of variable in perl?

0 Answers  


Categories