how to count occurences in a string code example
Example 1: how to count the occurrence of a word in string python
string = "Python is awesome, isn't it?"
substring = "is"
count = string.count(substring)
print("The count is:", count)
Example 2: number of occurrences of character in string
public class CountStringOccurence {
public static void main(String[] args) {
int count= countOccurences("aaassssddadad",'s');
System.out.println(count);
}
private static int countOccurences(String word, char character){
int count = 0;
for(int i = 0; i < word.length(); i++){
if(word.chartAt(i) == character){
count++; }
}
return count;
}
}