c#多个字符串查询两列数据中是否包含并将第二列数据统计在查询对应的数据后边。
例如:有ab,ac,ad,bd等20多个字符串,要查询的文件格式为:1,ab2,ed3,cf4,ac5,ed6,cf7,ac8,ed9,cf……………………怎么将:ab:...
例如:有ab,ac,ad,bd等20多个字符串,要查询的文件格式为:
1,ab
2,ed
3,cf
4,ac
5,ed
6,cf
7,ac
8,ed
9,cf
……………………
怎么将:ab:1,ac:4等都查询出来? 展开
1,ab
2,ed
3,cf
4,ac
5,ed
6,cf
7,ac
8,ed
9,cf
……………………
怎么将:ab:1,ac:4等都查询出来? 展开
1个回答
展开全部
用Linq可以实现,代码如下:
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
// 用string[] lines = File.ReadAllLines("文件名");
// 从文本文件中读入所有内容。
// 然后用Linq对读入的内容进行统计处理
string[] lines =
{
"ab", "ed", "cf",
"ac", "ed", "cf",
"ac", "ed", "cf"
};
var qry = from s in lines
group s by s into g
select g;
foreach(var g in qry)
{
Console.WriteLine("{0}:{1}",g.Key,g.Count());
}
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询