Answers for "find the number of occurrences of all character in a string"

-1

count 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;
}
}
Posted by: Guest on January-22-2021
0

count the number of occurrences of a character in a string java

String line = "apples.oranges.bananas";
int count = line.length() - line.replace(".", "").length();
System.out.println(count);//displays 2
Posted by: Guest on May-31-2021

Code answers related to "find the number of occurrences of all character in a string"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language