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

For a situation in programming, how can you determine that Perl is a suitable?

0 Answers  


You want to print the contents of an entire array. How would you do that?

0 Answers  


What is boolean context?

0 Answers  


What does `$result = f() .. g()' really return?

0 Answers  


You want to add two arrays together. How would you do that?

0 Answers  


What is the difference between exec and system?

0 Answers  


What is the difference between use and require in perl programming?

0 Answers  


How do you give functions private variables that retain their values between calls?

0 Answers  


Explain the arguments for perl interpreter.

0 Answers  


What can be done for efficient parameter passing in perl?

0 Answers  


What is 'rollback' command in perl?

0 Answers  


What is a chop() function in perl?

0 Answers  


Categories