Skip to content

Instantly share code, notes, and snippets.

@baoanhng
Last active May 19, 2017 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baoanhng/0c26e858d7516d443b482433fbeeccc2 to your computer and use it in GitHub Desktop.
Save baoanhng/0c26e858d7516d443b482433fbeeccc2 to your computer and use it in GitHub Desktop.
public static int subStrCount(String string, String substr) {
int count = 0;
int lastIndex = 0;
while ( (lastIndex = string.indexOf(substr, lastIndex) + 1) > 0 ) {
count++;
}
return count;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment