Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C# Sharp Exercises: Remove the first and last elements from a given string

C# Sharp Basic: Exercise-70 with Solution

Write a C# Sharp program to remove the first and last elements from a given string.

Sample Solution:

C# Sharp Code:

using System;
namespace exercises
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Original string: PHP");
            Console.WriteLine("After removing first and last elements: "+test("PHP"));
            Console.WriteLine("Original string: Python");
            Console.WriteLine("After removing first and last elements: " + test("Python"));
            Console.WriteLine("Original string: JavaScript");
            Console.WriteLine("After removing first and last elements: " + test("JavaScript"));
        }
        public static string test(string str1)
        {
            return str1.Length > 2 ? str1.Substring(1, str1.Length - 2) : str1;
        }
    }
}

Sample Output:

Original string: PHP
After removing first and last elements: H
Original string: Python
After removing first and last elements: ytho
Original string: JavaScript
After removing first and last elements: avaScrip

Flowchart:

Flowchart: C# Sharp Exercises - Remove the first and last elements from a given string.

Sample Solution-1:

C# Sharp Code:

using System;
namespace exercises
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Original string: PHP");
            Console.WriteLine("After removing first and last elements: "+test("PHP"));
            Console.WriteLine("Original string: Python");
            Console.WriteLine("After removing first and last elements: " + test("Python"));
            Console.WriteLine("Original string: JavaScript");
            Console.WriteLine("After removing first and last elements: " + test("JavaScript"));
        }
        public static string test(string str1)
        {
            return str1.Length <= 2 ? str1 : str1.Substring(1, str1.Length - 2);
        }
    }
}

Sample Output:

Original string: PHP
After removing first and last elements: H
Original string: Python
After removing first and last elements: ytho
Original string: JavaScript
After removing first and last elements: avaScrip

Flowchart:

Flowchart: C# Sharp Exercises -Remove the first and last elements from a given string.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to check if a given string contains only lowercase or uppercase characters.
Next: Write a C# Sharp program to check if a given string contains two similar consecutive letters.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.