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 Basic Algorithm Exercises: Create a new array from a given array of strings using all the strings whose length are matched with given string length


C# Sharp Basic Algorithm: Exercise-138 with Solution

Write a C# Sharp program to create a new array from a given array of strings using all the strings whose length are matched with given string length.

Pictorial Presentation:

C# Sharp: Basic Algorithm Exercises - Create a new array from a given array of strings using all the strings whose length are matched with given string length.

Sample Solution:

C# Sharp Code:

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {               
           ArrayList item = test(new[] {"a", "aaa", "b", "bbb", "c", "ccc" }, 3);            
           Console.Write("New array: ");         
           foreach(var i in item)
            {
               Console.Write(i.ToString()+" ");
            }     
        }                  
        static ArrayList test(string[] arr_str, int n)
         {
          ArrayList result_arra = new ArrayList();
            for (int i = 0; i < arr_str.Length; i++)
            {
                if (arr_str[i].Length == n)
                {
                    result_arra.Add(arr_str[i]);
                }
            }
            return result_arra;
        }    
    } 
}

Sample Output:

New array: aaa bbb ccc

Flowchart:

C# Sharp: Flowchart: Create a new array from a given array of strings using all the strings whose length are matched with given string length.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to create a new array using the first n strings from a given array of strings. (n>=1 and <=length of the array)
Next: Write a C# Sharp program to check a positive integer and return true if it contains a number 2.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.