w3resource

C#: Create a new string of the characters at indexes 0,1, 4,5, 8,9 ... from a given string


C# Sharp Basic Algorithm: Exercise-37 with Solution

Write a C# Sharp program to create a string of characters at indexes 0,1, 4,5, 8,9 ... from a given string.

Visual Presentation:

C# Sharp: Basic Algorithm Exercises - Create a new string of the characters at indexes 0,1, 4,5, 8,9 ... from a given string.

Sample Solution:-

C# Sharp Code:

using System;
using System.Linq;

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
            Console.WriteLine(test("Python"));      // Output: Py
            Console.WriteLine(test("JavaScript"));  // Output: Ja
            Console.WriteLine(test("HTML"));        // Output: HT
            Console.ReadLine(); // Keeping the console window open
        }

        // Method to process a string and extract substrings at specific intervals
        public static string test(string str1)
        {
            var result = string.Empty; // Initializing an empty string to store the result
            for (var i = 0; i < str1.Length; i += 4) // Loop through the characters of the string with a step of 4
            {
                var c = i + 2; // Calculate the index position to start the substring
                var n = 0; // Initialize a variable to hold the length of the substring
                n += c > str1.Length ? 1 : 2; // Determine the length based on the position and length of the string
                result += str1.Substring(i, n); // Extract a substring and append it to the result
            }
            return result; // Return the final result after processing the string
        }
    }
}

Sample Output:

Pyon
JaScpt
HT

Flowchart:

C# Sharp: Flowchart: Create a new string of the characters at indexes 0,1, 4,5, 8,9 ... 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 create a new string from a give string where a specified character have been removed except starting and ending position of the given string.
Next: Write a C# Sharp program to count the number of two 5's are next to each other in an array of integers.  Also count the situation where the second 5 is actually a 6.

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