c#英文单词分类统计示例分享
更新时间:2014年03月04日 09:42:34 投稿:zxhpj
本文给出的题目是给出一段英文,对其分类统计出英文单词的个数如:长度为4的单词有2个,长度为3的有1个,下面是题目答案
复制代码 代码如下:
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();
}
}
}
相关文章
C#泛型集合类System.Collections.Generic
这篇文章介绍了C#中的泛型集合类System.Collections.Generic,文中通过示例代码介绍的非常详细。对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2022-05-05c#实现数据同步的方法(使用文件监控对象filesystemwatcher)
这篇文章主要介绍了C#使用文件监控对象FileSystemWatcher实现数据同步,大家参考使用吧2013-12-12
最新评论