w3resource

C#: Create a new string without the first and last character of a given string of length atleast two


C# Sharp Basic Algorithm: Exercise-65 with Solution

Write a C# Sharp program to create a new string without the first and last character of a given string of length at least two.

Visual Presentation:

C# Sharp: Basic Algorithm Exercises - Create a new string without the first and last character of a given string of length atleast two.

Sample Solution:-

C# Sharp Code:

using System; // Import the System namespace which contains fundamental types and base classes

namespace exercises // Define a namespace called 'exercises'
{
    class Program // Define a class named 'Program'
    {
        static void Main(string[] args) // The entry point of the program
        {
            // Output the result of the test function with different strings as arguments
            Console.WriteLine(test("Hello")); // Test with the string "Hello"
            Console.WriteLine(test("Hi"));    // Test with the string "Hi"
            Console.WriteLine(test("Python")); // Test with the string "Python"
            Console.ReadLine(); // Wait for user input before closing the console window
        }

        // Function definition of test function that takes a string 's1' and returns a string
        public static string test(string s1)
        {
            // Get a substring of 's1' starting from index 1 to the end of the string,
            // then, get a substring of that result starting from index 0
            // The length of the second substring is equal to the original length of 's1' minus 2
            return s1.Substring(1).Substring(0, s1.Length - 2);
        }
    }
}

Sample Output:

ell

ytho

Flowchart:

C# Sharp: Flowchart: Create a new string without the first and last character of a given string of length atleast two.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to create a new string of the first half of a given string of even length.
Next: Write a C# Sharp program to create a new string from two given string one is shorter and another is longer. The format of the new string will be long string +  short string + lng string.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/csharp-exercises/basic-algo/csharp-basic-algorithm-exercises-65.php