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?

499


In CPAN module, name an instance you use.

536


Which has highest precedence in between list and terms? Explain?

434


What are perl array functions?

523


What syntax is used for grep() function?

564






Explain chomp?

507


What is warn function in perl?

526


Explain splicing of arrays?

513


How to deleting an existing file in perl programming?

490


How to sort arrays in perl?

614


Give an example of using the -n and -p option.

533


What is the use of 'ne' operator?

486


What does undef function in perl?

515


Explain subroutine?

521


What is 'rollback' command in perl?

543