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 Exercises: Count a specified character (both cases) in a given string

C# Sharp Basic: Exercise-68 with Solution

Write a C# Sharp program to count a specified character (both cases) in a given string.

Sample Solution:

C# Sharp Code:

using System;
namespace exercises
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(test("PHP Exercises", 'E', 'e'));
            Console.WriteLine(test("Latest News, Breaking News LIVE", 'A', 'a'));
        }
        public static int test(string str1, char uc, char lc)
        {
            return str1.Split(uc, lc).Length - 1;
        }
    }
}

Sample Output:

3
2

Flowchart:

Flowchart: C# Sharp Exercises - Count a specified character (both cases) in a given string.

Sample Solution-1:

C# Sharp Code:

using System;
using System.Linq;
namespace exercises
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(test("PHP Exercises", 'E', 'e'));
            Console.WriteLine(test("Latest News, Breaking News LIVE", 'A', 'a'));
        }
        public static int test(string str1, char uc, char lc)
        {
            return str1.Where(ch => (ch == lc || ch == uc)).Count();
        }
    }
}

Sample Output:

3
2

Flowchart:

Flowchart: C# Sharp Exercises - Count a specified character (both cases) in 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 coded string from a given string, using specified formula.
Next: Write a C# Sharp program to check if a given string contains only lowercase or uppercase characters.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.