ASP.NET获取字符串中某个字符的个数或者某个字符串的个数?
例如:"1122334455662"获取"22"的个数或者'2'的个数,返回值应该是1、3,请问怎么实现......我要计算字符串"22"或者"223"的个数了?不要单个...
例如:"1122334455662" 获取"22"的个数或者'2'的个数,返回值应该是1、3,请问怎么实现......
我要计算字符串"22"或者"223"的个数了?不要单个字符的方法... 展开
我要计算字符串"22"或者"223"的个数了?不要单个字符的方法... 展开
3个回答
展开全部
static int Count(string WithinString, string search)
{
if (string.IsNullOrEmpty(search))
throw new ArgumentNullException("search");
int counter = 0;
int index = WithinString.IndexOf(search,0);
while(index >=0 && index < WithinString.Length)
{
counter++;
index = WithinString.IndexOf(search,index+search.Length);
}
return counter;
}
{
if (string.IsNullOrEmpty(search))
throw new ArgumentNullException("search");
int counter = 0;
int index = WithinString.IndexOf(search,0);
while(index >=0 && index < WithinString.Length)
{
counter++;
index = WithinString.IndexOf(search,index+search.Length);
}
return counter;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你可以用C#循环实现。
如下:
using System;
public class Calc
{
static int Count(string strFind,char chFind)
{
char[] chrs = strFind.ToCharArray();
int i = 0;
foreach (char chr in chrs)
{
if (chr == chFind)
i++;
}
return i;
}
static void Main()
{
string str = "1122334455662";
char chFind = '2';//还可以是3,4等
Console.WriteLine(Count(str, chFind));
}
}
如下:
using System;
public class Calc
{
static int Count(string strFind,char chFind)
{
char[] chrs = strFind.ToCharArray();
int i = 0;
foreach (char chr in chrs)
{
if (chr == chFind)
i++;
}
return i;
}
static void Main()
{
string str = "1122334455662";
char chFind = '2';//还可以是3,4等
Console.WriteLine(Count(str, chFind));
}
}
追问
我要计算字符串"22"或者"223"的个数了?这还可以循环吗?单个字符循环我知道啊。
追答
你看这样可以吗?由于家里电脑没装C#运行环境,所以以下代码没有测试。
int i=0;
string str = "1122334455662";
string strFind="22“;
while(str.Length>0)
{
if(str.Contains(strFind))
{
i++;
str=str.Substring(str.IndexOf(strFind)+1);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用ASP.NET实现?不能用C或者C++吗?
追问
我就是用ASP.NET做的winform程序...所有不能用c或者c++。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询