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


how to find a substring in a string without using substr
built in functions, and print the substring found

Answers were Sorted based on User's Feedback



how to find a substring in a string without using substr built in functions, and print the substrin..

Answer / yashwanth

$r="YASHWANTH";

@n=split (//,$r);
print "@n\n";
@t=splice(@n,0,3);

print "@t\n";
$r=join("",@t);
print "$r\n";
~
~

Is This Answer Correct ?    10 Yes 2 No

how to find a substring in a string without using substr built in functions, and print the substrin..

Answer / lucky

#!/usr/bin/perl
print"enter string
";
$str=<stdin>;
print"enter substring
";
$substr=<stdin>;
if($str=~$substr){
    print"valid
";
}
else
{
print"invalid
";
}

Is This Answer Correct ?    0 Yes 0 No

how to find a substring in a string without using substr built in functions, and print the substrin..

Answer / garg

#! /user/bin/perl
$str="Yashwanth";
$n="wan";
if ($str=~ $n)
{
print $n;
}

Is This Answer Correct ?    4 Yes 6 No

Post New Answer

More CGI Perl Interview Questions

How do I replace every character in a file with a comma?

0 Answers  


How many ways can we express string in Perl?

0 Answers  


How can you create an object of a class in a package?

4 Answers   IBM,


What is the tk module?

0 Answers  


Assuming both a local($var) and a my($var) exist, what's the difference between ${var} and ${"var"}?

0 Answers  


Why to use perl scripting?

0 Answers  


What is the importance of perl warnings?

0 Answers  


What is the difference between use and require in perl?

0 Answers  


Hi, I am a accountant. I am preparing a balance sheet but because of staff shortage and time pressures I cant complete it on time. There is lot of common data with last years which I need not retype and I can manage by editing last year’s balance sheet ? Is their any software on net where I can do this easily??

0 Answers  


How will you access an element of a perl array?

0 Answers  


How to get help for perl?

0 Answers  


How do you match one letter in the current locale?

0 Answers  


Categories