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

Write a program to download the contents from www.perlinterview.com/answers.php website in Perl.

709


Write the program to process a list of numbers.

657


How to replace perl array elements?

705


Define perl scripting?

762


Explain tk?

684


What are some of the key features of objects in perl?

720


How to prevent file truncation in perl?

700


“The methods defined in the parent class will always override the methods defined in the base class”. What does this statement means?

796


Which feature of perl provides code reusability?

758


How we can navigate the xml documents?

739


How does polymorphism work in perl? Give an example.

648


Explain a tell function in perl?

748


Explain perl. When do you use perl for programming?

630


What are scalars?

757


What is -> symbol in perl?

734