码迷,mamicode.com
首页 > 其他好文 > 详细

Linq to object 技巧、用法集锦

时间:2015-05-31 21:30:03      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

一、一个字符串,一个字符串数组。判断字符串数组里的元素出现在字符串中的有几个。

 
    class Program
    {
        static void Main(string[] args)
        {
            string str = "你在他乡还好吗?";
            string[] WordList = new string[] {"他乡","家庭","还好","怎么" };
            int count = WordList.Where(m => str.Contains(m)).Count();

            Console.WriteLine(count);   //输出2

            Console.ReadKey();
        }
    }

Linq to object 技巧、用法集锦

标签:

原文地址:http://www.cnblogs.com/feng-NET/p/4542327.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!