2011-09-02 12 views

Respuesta

2
var result = 
    Regex.Matches(s, @"\b\w+\b").OfType<Match>() 
     .GroupBy(k => k.Value, (g, u) => new { Word = g, Count = u.Count() }) 
     .OrderBy(n => n.Count) 
     .Take(10); 
8

En primer lugar obtener todas las palabras de ese campo:

IEnumerable<string> allWords = from entry in table 
           from word in entry.Field.Split(' ') 
           select word; 

A continuación, agruparlos por sus recuentos:

IEnumerable<string> result = from word in allWords 
          group word by word into grouped 
           let count = grouped.Count() 
           orderby count descending 
           select grouped.Key; 

obtener los mejores resultados: 10

result.Take(10); 
+1

Falta un 'select' o' group by' al final. – leppie

+0

Thx para recordar –

2

Aquí tienes un ejemplo sencillo con los números:

class Program 
{ 
    static void Main(string[] args) 
    { 
     int[] nums = new int[] { 2, 3, 4, 5, 6, 1, 2, 3, 1, 1, 1, 7, 12, 451, 13, 
      46, 1, 1, 3, 2, 3, 4, 5, 3, 2, 4, 4, 5, 6, 6, 8, 9, 0}; 
     var numberGroups = 
      (from n in nums 
      group n by n into g 
      orderby g.Count() descending 
      select new { Number = g.Key, Count = g.Count() } 
      ).Take(10); 

     Console.ReadLine(); 
    } 
} 

Saludos

Cuestiones relacionadas