c# 中如何计算特定的字符个数
想实现这么一个功能:比如现在有一段字符串:8,9,10,11,12;这里面一共有5个数字,4个英文逗号,我想得到这段字符串中的数字的个数,也就是5,应该怎么写呢?谢谢各位...
想实现这么一个功能:
比如现在有一段字符串:8,9,10,11,12;这里面一共有5个数字,4个英文逗号,我想得到这段字符串中的数字的个数,也就是5,应该怎么写呢?谢谢各位大侠啦! 展开
比如现在有一段字符串:8,9,10,11,12;这里面一共有5个数字,4个英文逗号,我想得到这段字符串中的数字的个数,也就是5,应该怎么写呢?谢谢各位大侠啦! 展开
2个回答
展开全部
8,9,10,11,12,AS,91.11
如果需要得到的是逗号分割的元素中是整数的元素的个数(以上的结果是5):
string temp = "8,9,10,11,12,AS,9111";
string[] temps = temp.Split(',');
int count = 0;
foreach(string s in temps)
{
int d=0;
if(Int32.TryParse(s,d))
{
count++;
}
}
如果需要得到的是逗号分割的元素中是数字的元素的个数(以上的结果是6):
string temp = "8,9,10,11,12,AS,9111";
string[] temps = temp.Split(',');
int count = 0;
foreach(string s in temps)
{
double d=0;
if(Double.TryParse(s,d))
{
count++;
}
}
如果需要得到的是逗号分割的元素中是整数的元素的个数(以上的结果是5):
string temp = "8,9,10,11,12,AS,9111";
string[] temps = temp.Split(',');
int count = 0;
foreach(string s in temps)
{
int d=0;
if(Int32.TryParse(s,d))
{
count++;
}
}
如果需要得到的是逗号分割的元素中是数字的元素的个数(以上的结果是6):
string temp = "8,9,10,11,12,AS,9111";
string[] temps = temp.Split(',');
int count = 0;
foreach(string s in temps)
{
double d=0;
if(Double.TryParse(s,d))
{
count++;
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询