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

From the given paragraph of text, write a program to match
the strings of format “Any number of numerals followed by
an underscore followed by any number of alphabets"
ex:123_abc
(Note:using regular expressions)

Answer Posted / kp

private void RegExp(string input)
{
string s = input;
Regex regexp = new Regex("^[0-9]*_[A-Za-z]*$");
if(regexp.IsMatch(input))
Console.WriteLine("Matched");
else
Console.WriteLine("Not Match");
}

Is This Answer Correct ?    19 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is asp.net with mvc? : Asp.Net MVC

968


In order to get assembly info which namespace we should import?

985


What is the difference between Session and response.Redirect?

1117


What is the difference between “Web.config” and “Machine.Config”?

1119


What is the mvc model?

992


What is page fragment caching?

937


ASP.NET 2.0's new membership API used for creating and managing user account is exposed through which 2 clause?

1911


What does asp stand for in asp.net?

963


How do I send an email message from my ASP.NET page?

947


What is the concept of postback in asp.net?

1023


What is the difference between ASP.NET Webforms and ASP.NET MVC?

1130


Explain the difference between inline and code behind - which is best in?

991


Which protocol is used to call web service?

975


What is aspect-oriented programming?

1077


Which is better php or asp.net?

931