英文单词分类 c#英文单词分类统计示例分享
人气:0想了解c#英文单词分类统计示例讲解的相关内容吗,在本文为您仔细讲解英文单词分类的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:英文单词分类,下面大家一起来学习吧。
复制代码 代码如下:
using System;
using System.Linq;
namespace ConsoleApplication1
{
/// <summary>
/// 给出一段英文,分类统计(如:长度为4的单词有2个:time,well)
/// </summary>
class Program
{
static void Main(string[] args)
{
string source = "Do one thing at a time,and do well";//已知英文语句
string[] stringArray = source.Split(new char[] { ' ', ',' });
var result = stringArray.GroupBy(s => s.Length).Select(s => new {
Lenght = s.Select(x => x).FirstOrDefault().Length,
Count = s.Count(),
StringItems = s.Select(x => x)
});
foreach (var s in result)
{
string strResult = string.Empty;
foreach (var item in s.StringItems)
{
strResult += string.IsNullOrEmpty(strResult) ? item : " , " + item;
}
Console.WriteLine(string.Format("长度为{0}的单词有{1}个:{2}", s.Lenght, s.Count, strResult));
}
Console.ReadKey();
}
}
}
加载全部内容