Here you can find the source of countSubString(String str, String substr)
public static int countSubString(String str, String substr)
//package com.java2s; public class Main { /** @METHOD */ public static int countSubString(String str, String substr) { int cnt = 0; int lastindex = str.length(); while (lastindex > -2) { lastindex = str.lastIndexOf(substr, lastindex) - 1; if (lastindex > -2) cnt++;/*from w w w . j a v a 2 s.c om*/ } return cnt; } }