Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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



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

Answer / 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

More CGI Perl Interview Questions

Write the program to process a list of numbers.

0 Answers  


What purpose does each of the following serve: -w, strict, - T ?

2 Answers  


What is cpan ? What are the modules coming under this?

0 Answers  


what are prefix dereferencer and list them out?

0 Answers  


When would `local $_' in a function ruin your day?

0 Answers  


What is use of ‘->’ symbol?

0 Answers  


How does polymorphism work in perl?

0 Answers  


How will you declare a variable in perl?

0 Answers  


i have a folder called 'error' and in that, i have error log files which are generated by the build, now i want to findout the string 'error' from each log file and that error has to be copied into the another file called 'analysis'. how do you do this in perl?

5 Answers   HP,


Can we load binary extension dynamically?

0 Answers  


what is the procedure to define a user define module in your perl application?

2 Answers   IBM,


In Perl we can show the warnings using some options in order to reduce or avoid the errors. What are that options?

0 Answers  


Categories