码迷,mamicode.com
首页 > Windows程序 > 详细

C#查找子串在原串中出现次数

时间:2015-06-12 08:39:54      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

  提供的是一种思路,和具体语言无关。

string test = "good good study day day up";
string r = test.Replace("oo","");
int num = (test.Length - r.Length) /"oo".length; 
Console.WriteLine(num);

  

C#查找子串在原串中出现次数

标签:

原文地址:http://www.cnblogs.com/hxsyl/p/4570771.html

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