How Many Vowels

Code Example - How Many Vowels

                
                        using System.Linq;
public class Program 
{
    public static int CountVowels(string str)
      => str.Count(a=>%%%~COMPRESS~PRE~0~%%%quot;aeiouAEIOU".Contains(a));
}