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

8_6学习内容演练。

时间:2015-08-07 08:13:44      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:

 Console.Write("请输入字符串");

            string strA = Console.ReadLine();

            Console.Write("请输入要查找的字符");

            string strB = Console.ReadLine();


            int m = 0 , n = 0;

            bool isContains = strA.Contains(strB);

            if (isContains)

                

                for (int i = 0; i < strA.Length; i++)
                {
                    m = strA.IndexOf(strB, i);
                    if (m == i)
                    {
                        Console.WriteLine("出现的索引位置为" + m);
                        n++;
                    }
                }
            

            Console.WriteLine("出现的次数为" + n);
          

            Console.ReadLine();

  

 

8_6学习内容演练。

标签:

原文地址:http://www.cnblogs.com/suncan0/p/4709683.html

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