A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Write a C# program to check if a given string contains ‘w’ character between 1 and 3 times
Q:

Write a C# program to check if a given string contains ‘w’ character between 1 and 3 times

0

Write a C# program to check if a given string contains ‘w’ character between 1 and 3 times

Sample Output:

Input a string (contains at least one 'w' char) : w3resource           
Test the string contains 'w' character  between 1 and 3 times:         
True

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
public class Exercise41
{
    public static void Main( )
    {
        Console.Write("Input a string (contains at least one 'w' char) : ");
        string str = Console.ReadLine();
        var count = str.Count(s => s == 'w');
        Console.WriteLine("Test the string contains 'w' character  between 1 and 3 times: ");
        Console.WriteLine(count>=1 && count <= 3);   
    }
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now