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
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 |
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 |
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 |
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 |
Compare and contrast between inline and code behind - which one is best?
What is the namespace for encryption?
3 Answers Astadia, CIA, Wipro,
What is a WebService and what is the underlying protocol used in it? Namespace?
can we edit records from repeater control
if i have 1000 records and i want to access 20 ata time from SQL server, what will be the query?
How about the security in Activex DLL and Activex EXE ?
Explain about Application and Session Events ?
What is the concept of postback in asp.net?
Which ASP.NET configuration options are supported in the ASP.NET implementation on the shared web hosting platform?
What is the Difference B/W Finalize() and Dispose() in .Net?
12 Answers HCL, IBM,
What is the significance of proxy user?
Define secured sockets layer.