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)

Answers were Sorted based on User's Feedback



From the given paragraph of text, write a program to match the strings of format “Any number of ..

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

From the given paragraph of text, write a program to match the strings of format “Any number of ..

Answer / raghuram

both the above answers are wrong....... Reg Exp should say..

new Regex("[0-9]*_[A-Za-z]*");

^ and $ mean beginning and end of a line... and the question
is to select that particular combination no matter where
they are present...... need not be entire line.

Is This Answer Correct ?    5 Yes 0 No

From the given paragraph of text, write a program to match the strings of format “Any number of ..

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

From the given paragraph of text, write a program to match the strings of format “Any number of ..

Answer / pio

Raghuram is right and his regex is 100% correct. The other
2 answers also have a string which does nothing:

string s = input;

so it is not necessary.

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More ASP.NET Interview Questions

What do you mean by serialize and marshalbyref?

0 Answers  


Which method do you invoke on the DataAdapter control to load your generated dataset with data?

2 Answers  


What will happen if the server confugration file and the application confugration file have different values for sassion state ASP.NET?

0 Answers   HCL,


To which class you load XML or Related Data

1 Answers  


Hi, I am a fresher. i have a problem related to DataGrid . i have a data grid and i have to place a dropdown in the datagrid.and i have to retrieve the values from the database (sqlserver).please tell me any idea about the code.

1 Answers   Lambent,






What are ASP.NET Web Forms? How is this technology different than what is available though ASP?

1 Answers   BirlaSoft,


Can we have multiple master pages in asp net?

0 Answers  


How will you do Redo and Undo in a TextControl?

0 Answers  


What are the elements of a website?

0 Answers  


What is _dopostback in asp net?

0 Answers  


Explain login control and form authentication.

0 Answers  


For Web services where you can browse on the Internet?

1 Answers   Siebel,


Categories