HOME C C++ PYTHON JAVA HTML CSS JAVASCRIPT BOOTSTRAP JQUERY REACT PHP SQL AJAX JSON DATA SCIENCE AI

Java How To Count Words

Count Number of Words in a String

You can easily count the number of words in a string with the following example:

Example
String words = "One Two Three Four";
int countWords = words.split("\\s").length;
System.out.println(countWords );