w3resource

C#: Create a new string which is 4 copies of the 2 front characters of a given string


C# Sharp Basic Algorithm: Exercise-8 with Solution

Write a C# Sharp program to create a string which is 4 copies of the 2 front characters of a given string. If the given string length is less than 2 return the original string.

Visual Presentation:

C# Sharp: Basic Algorithm Exercises - Create a new string which is 4 copies of the 2 front characters of a given string.

Sample Solution:

C# Sharp Code:

using System;

// Namespace declaration
namespace exercises
{
    // Class declaration
    class Program
    {
        // Main method - entry point of the program
        static void Main(string[] args)
        {
            // Calling the 'test' method with different strings and displaying the returned values
            Console.WriteLine(test("C Sharp")); // Output: "C SharpC SharpC SharpC Sharp"
            Console.WriteLine(test("JS"));       // Output: "JSJSJSJS"
            Console.WriteLine(test("a"));        // Output: "aa"
            Console.ReadLine();                  // Keeping the console window open
        }

        // Method to perform a specific string transformation
        public static string test(string str)
        {
            // Conditional check to determine if the length of the input string is less than 2
            // If the length is less than 2, the input string is returned as is
            // If the length is 2 or greater, the string is concatenated multiple times based on its first two characters
            return str.Length < 2
                // If the length is less than 2, returns the input string itself
                ? str
                // If the length is 2 or more, concatenates the first two characters of the input string four times
                : str.Substring(0, 2) + str.Substring(0, 2) + str.Substring(0, 2) + str.Substring(0, 2);
        }
    }
}

Sample Output:

C C C C 
JSJSJSJS
a

Flowchart:

C# Sharp: Flowchart: Create a new string which is 4 copies of the 2 front characters of a given string.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to exchange the first and last characters in a given string and return the new string.
Next: Write a C# Sharp program to create  a new string with the last char added at the front and back of a given string of length 1 or more.

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-8.php