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

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 ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is http session state?

948


What are the options in ASP.NET to maintain state?

1111


How do we access view state value of this page in the next page?

987


Explain the difference between AutoPostBack and IspostBack in ASP.NET?

1055


Can we set which type of comparison we want to perform by the CompareValidator control?

1002


Explain transparent caching with aop?

925


How does session authentication work?

908


How asynchronous call can be implemented using delegates?

981


What are the Types of state management techniques

1017


What is autopostback in dropdownlist in asp net?

974


What is microsoft windows sharepoint services?

1055


Explain difference between friend and protected friend?

916


Describe the master page.

943


Why web api is better than wcf?

1089


What is the difference between custom web user control and a custom web server control?

954