A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 林成彬 高级黑马   /  2014-1-20 15:31  /  832 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 林成彬 于 2014-1-21 11:26 编辑

现在有一个字符串“Hello My Friend”,求里面字符出现的次数,如h 1,要求:不区分大小写

评分

参与人数 1技术分 +1 收起 理由
船长 + 1

查看全部评分

1 个回复

倒序浏览
    class Program
    {
        static void Main(string[] args)
        {
            string str = "Hello My Friend";
            Test(str, "H");
            Console.ReadKey();

        }

        static void Test(string s,string searchStr)
        {
            searchStr = searchStr.ToLower();
            int res = s.Where(x => x.ToString().ToLower() == searchStr).Count();
            Console.WriteLine("{0}  {1}",searchStr,res);
        }

    }

评分

参与人数 1技术分 +2 收起 理由
船长 + 2

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马