Input:http://www.allinterview.com/forms/questionform.php
Output:http://www.allinterview.com/forms/questionform
Write c# program to get the above desired output for the given
Input.....

Answers were Sorted based on User's Feedback



Input:http://www.allinterview.com/forms/questionform.php Output:http://www.allinterview.com/forms/q..

Answer / prem ranjan

string input="http://www.allinterview.com/forms/questionform.php";

string output= input.Substring(0, input.LastIndexOf("."));
Console.WriteLine(output);

Is This Answer Correct ?    2 Yes 0 No

Input:http://www.allinterview.com/forms/questionform.php Output:http://www.allinterview.com/forms/q..

Answer / konangiaparna

string output = input.Substring(0, input.LastIndexOf("."));

Is This Answer Correct ?    0 Yes 0 No

Input:http://www.allinterview.com/forms/questionform.php Output:http://www.allinterview.com/forms/q..

Answer / mallikarjuna016

string input="http://www.allinterview.com/forms/questionform.php";

output= input.Substring(0, input.LastIndexOf(".") + 1);

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More ASP.NET Interview Questions

What is Boxing and Unboxing?

7 Answers   Accenture, IBM, Tech Mahindra,


What is the basic difference between asp and asp.net?

0 Answers  


Describe session handling in a webfarm, how does it work and what are the limits?

0 Answers   Siebel Systems,


How do active server pages work?

0 Answers  


How Can we use multiple forms in single asp.net application?

3 Answers   Polaris,


What is meant by server side scripting?

0 Answers  


How Can assign alias name for ASP.NET Web API Action?

0 Answers  


Which is faster union or union all?

0 Answers  


What is the use of session in web application?

0 Answers  


what is CTS?

3 Answers   PrimeLine,


How do you validate the controls in an ASP .NET page?

3 Answers  


web user and custom conrols

1 Answers  


Categories