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等都查询出来?
展开
 我来答
freeeeeewind
2016-11-04 · TA获得超过1万个赞
知道大有可为答主
回答量:3227
采纳率:94%
帮助的人:1308万
展开全部


用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());
            }

        }
    }
}

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式