Write a program to enter a string and count total number of word The/the in the given string. code example
Example 1: how to count number of words in a string
String name = "Carmen is a fantastic play";
int numWords = (name.split("\\s+")).length;
System.out.println(numWords);
Example 2: program code for counting the similarwrod in the sentences
public static int count(String word) {
if (word == null || word.isEmpty()) {
return 0;
}
int wordCount = 0;
boolean isWord = false;
int endOfLine = word.length() - 1;
char[] characters = word.toCharArray();
for (int i = 0; i < characters.length; i++) {
if (Character.isLetter(characters[i]) && i != endOfLine) {
isWord = true;
} else if (!Character.isLetter(characters[i]) && isWord) {
wordCount++;
isWord = false;
} else if (Character.isLetter(characters[i]) && i == endOfLine) {
wordCount++;
}
}
return wordCount;
}