Write a C# Sharp program to get the index number of all lower case letters in a given string


Write a C# Sharp program to get the index number of all lower case letters in a given string

Sample Output:

Orginal string: Python

Indices of all lower case letters of the said string:
1 2 3 4 5 
Orginal string: JavaScript

Indices of all lower case letters of the said string:
1 2 3 5 6 7 8 9

الأجوبة

ابحث عن مسائل برمجة سي شارب | c# programming بالانجليزي

using System;
using System.Linq;
using System.Collections.Generic;
namespace exercises
{
    class Program
    {
        static void Main(string[] args)
          {
            string text;
            text = "Python";
            Console.WriteLine("Orginal string: "+text);
            int[] result = test(text);
            Console.WriteLine("\nIndices of all lower case letters of the said string:");
            foreach (var item in result)
            {
                Console.Write(item.ToString()+" ");
            }
            text = "JavaScript";
            Console.WriteLine("\nOrginal string: " + text);
            result = test(text);
            Console.WriteLine("\nIndices of all lower case letters of the said string:");
            foreach (var item in result)
            {
                Console.Write(item.ToString() + " ");
            }
        }

        public static int[] test(string str)
        {
            return str.Select((x, i) => i).Where(i => char.IsLower(str[i])).ToArray();
        }
    }
}

محتاج مساعدة؟ تواصل مع مدرس اونلاين الان!