Answers for "Count the number of occurences of 'a' in the string"

1

how to count number of words in a string

String name = "Carmen is a fantastic play"; //arbitrary sentence
        
        int numWords = (name.split("\\s+")).length; //split string based on whitespace
                                                //split returns array - find legth of array
        
        System.out.println(numWords);
Posted by: Guest on June-06-2020
-2

count substring in string python

def count_substring(string,sub_string):
    l=len(sub_string)
    count=0
    for i in range(len(string)-len(sub_string)+1):
        if(string[i:i+len(sub_string)] == sub_string ):      
            count+=1
    return count
Posted by: Guest on October-14-2020

Code answers related to "Count the number of occurences of 'a' in the string"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language