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
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 |
Answer / konangiaparna
string output = input.Substring(0, input.LastIndexOf("."));
Is This Answer Correct ? | 0 Yes | 0 No |
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 |
What is Boxing and Unboxing?
7 Answers Accenture, IBM, Tech Mahindra,
What is the basic difference between asp and asp.net?
Describe session handling in a webfarm, how does it work and what are the limits?
How do active server pages work?
How Can we use multiple forms in single asp.net application?
What is meant by server side scripting?
How Can assign alias name for ASP.NET Web API Action?
Which is faster union or union all?
What is the use of session in web application?
what is CTS?
How do you validate the controls in an ASP .NET page?
web user and custom conrols