计数的次数一个字符串出现在字符串中

计数的次数一个字符串出现在字符串中

本文介绍了计数的次数一个字符串出现在字符串中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我只是有一个字符串,它看起来是这样的:

7,真实,NA,假:67,假的,NA,假:5,假的,NA,假:5,假的,NA,假

所有我想要做的是算字符串true多少次出现在该字符串。我感觉像答案是像String.CountAllTheTimesThisStringAppearsInThatString(),但由于某种原因,我无法弄清楚。帮助?


解决方案

  Regex.Matches(输入,真).Count之间

I simply have a string that looks something like this:

"7,true,NA,false:67,false,NA,false:5,false,NA,false:5,false,NA,false"

All I want to do is to count how many times the string "true" appears in that string. I'm feeling like the answer is something like String.CountAllTheTimesThisStringAppearsInThatString() but for some reason I just can't figure it out. Help?

解决方案
Regex.Matches( input,  "true" ).Count

这篇关于计数的次数一个字符串出现在字符串中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-10 22:09