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

Answer Posted / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

You want to download the contents of a url with perl. How would you do that?

676


how to extract pin_code,phone_number,year from text file using regular expressions in perl

2050


How are parameters passed to subroutines in perl?

724


Explain the execution of a program in perl.

711


What is goto statement in perl?

731


How to concatenate strings with perl?

673


What are scalar data and scalar variables?

858


How would you ensure the re-use and maximum readability of your perl code?

740


What is the use of -n and -p options?

803


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

730


What are the various advantages and disadvantages of perl?

666


There are some duplicate entries in an array and you want to remove them. How would you do that?

725


What can be done for efficient parameter passing in perl?

662


Which feature of perl provides code reusability?

772


what is the difference between java and cgi?

781