Write a Java program to count the occurrences of a given string in another given string code example
Example: find number of occurrences of a substring in a string java
public static int count(String str, String target) {
return (str.length() - str.replace(target, "").length()) / target.length();
}