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
What does cgi program store?
how to create a flat file database as shown below s.no name age city phone 0 hema 22 Calcutta 4312542 1 hema 21 Bangalore 2344345 2 ganesh 25 delhi 2445454 3 kartik 45 pune 4312121 4 santosh 25 Hyderabad 2254231 5 kumar 25 mysore 2344567 6 gita 34 mangalore 6532123 7 gita 32 pune 2213456 Q1.print the details of the person who r from bangalore q2.Replace the city name managlore to pune q3.prints no of person having name gita and hema q4.print how many are of age 25.
how to extract pin_code,phone_number,year from text file using regular expressions in perl
When would `local $_' in a function ruin your day?
How to open a directory in perl?
Why should I use the -w argument with my Perl programs?
How do you turn on the perl warnings?
What are the various advantages and disadvantages of perl?
what is perl language?
How many data types are there in perl?
What does perl do in linux?
Explain join function in perl?
What is the difference between single (') and double (") quote in a string in perl?
Explain a tell function in perl?
What is Perl?