Remove all vowels from a string with where clause in CSharp

Description

The following code shows how to remove all vowels from a string with where clause.

Example


   //w w  w.  j a v a  2  s  .  c om

using System;
using System.Collections.Generic;
using System.Linq;
public class MainClass {
    public static void Main() {

        IEnumerable<char> query = "Not what you might expect";

        query = query.Where(c => c != 'a');
        query = query.Where(c => c != 'e');
        query = query.Where(c => c != 'i');
        query = query.Where(c => c != 'o');
        query = query.Where(c => c != 'u');

        foreach (char c in query) Console.Write(c); 
    }
}

The code above generates the following result.





















Home »
  C# Tutorial »
    LINQ »




Operator
Select
Where
OrderBy
Group
Join
Let
LINQ