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 is the purpose of “_file_ literal” and “_line_ literal” in perl?
Which has the highest precedence, List or Terms? Explain?
Explain gmtime() function in perl?
what is the main function of fork() in cgi programming?
How to code in perl to implement the tail function in unix?
How to compare two strings in perl?
Comment on data types and variables in perl.
What is perl pop array function?
When do you use perl programming?
If EXPR is an arbitrary expression, what is the difference between $Foo::{EXPR} and *{"Foo::".EXPR}?
What are arrays in perl?
What syntax is used for grep() function?
What are the arguements we normally use for perl interpreter?
you are required to replace a char in a string and store the number of replacements. How would you do that?
Write a cgi program to show the header part?