入门客AI创业平台(我带你入门,你带我飞行)
博文笔记

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

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

编写一个名称为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();
        }
    }
}

声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。
  • 上一篇:没有了
  • 下一篇:没有了
未上传头像