铭轩同学

铭轩,为自己代言!

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

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

复制代码
    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();
        }
    }
复制代码

 

 
 
 
0
0
 
(请您对文章做出评价)
 
« 上一篇:javascript闭包
» 下一篇:SQL Server索引设计 <第五篇>
posted on 2015-08-07 10:43  铭轩同学  阅读(184)  评论(0编辑  收藏  举报