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???

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

How to convert arrays into a string in perl?

947


how to connect cisco switch uisng perl script

3847


Enlist the advantages of using c over perl?

916


How will you access an element of a perl array?

945


Write an example explaining the use of symbol tables.

961


What happens in dereferencing?

1041


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

893


What are some common methods to all handles in perl?

923


Write a program that shows the distinction between child and parent process?

938


How many ways can we express string in Perl?

965


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

866


Explain regular expression in perl?

960


What is perl shift array function?

965


What is the use of -t?

972


How many types of primary data structures in Perl and what do they mean?

1413