w3resource

C#: Create a new string using the first and last n characters from a given string of length at least n


C# Sharp Basic Algorithm: Exercise-73 with Solution

Write a C# Sharp program to create a new string using the first and last n characters from a given string of length at least n.

Visual Presentation:

C# Sharp: Basic Algorithm Exercises - Create a new string using the first and last n characters from a given string of length at least n.

Sample Solution:-

C# Sharp Code:

using System; // Importing the System namespace

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 and integer values as arguments
            Console.WriteLine(test("Hello", 1));   // Pass "Hello" and 1 as arguments to the test function
            Console.WriteLine(test("Python", 2));  // Pass "Python" and 2 as arguments to the test function
            Console.WriteLine(test("on", 1));      // Pass "on" and 1 as arguments to the test function
            Console.WriteLine(test("o", 1));       // Pass "o" and 1 as arguments to the test function
            Console.ReadLine(); // Wait for user input before closing the console window
        }

        // Function definition of test function that takes a string 's1' and an integer 'n' and returns a string
        public static string test(string s1, int n)
        {
            // Concatenate the substring of 's1' from index 0 to 'n' and the substring of 's1' from the last 'n' characters
            return s1.Substring(0, n) + s1.Substring(s1.Length - n);
        }
    }
}

Sample Output:

Ho
Pyon
on
oo

Flowchart:

C# Sharp: Flowchart: Create a new string using the first and last n characters from a given string of length at least n.

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 ends with "on".
Next: Write a C# Sharp program to create a new string of length 2 starting at the given index of  a given string.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.