牛骨文教育服务平台(让学习变的简单)
博文笔记

C#计算当前字符在字符串出现的次数

创建时间:2014-09-18 投稿人: 浏览次数:986

编写一个名称为MyClass一个类,在该类中编写一个方法,名称为CountChar,返回值为整型,参数两个,第一个参数可以是字符串、整数、单精度、双精度,第二个参数为字符,方法功能返回第二个参数在第一个参数中出现次数。如CountChar("6221982","2")返回值为3。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Myclass
    {
        public
        int CountChar(string str, char s)
        {
            return str.Split(s).Length - 1;
        }
    }

    class Program
    {
        static void Main(string[] args)
        {
            Myclass class1= new Myclass();
            int num=class1.CountChar("sadfsdfjhaksudhfjasdhf", "s");
            Console.Write(num);
            Console.Read();
        }
    }
}

声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。