Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
int CountOcc(string s, string sub)
{
int iCount = 0;
int at =0;
while (true)
{
int iPos = s.IndexOf(sub,at);
if (iPos == -1)
break;
iCount++;
at=iPos+sub.Length;
}
return iCount;
}
string s ="onetwo for onesixonetentwo one";
int count=CountOcc(s,"one"); // returns 4