Here you can find the source of countWords(String string)
public static int countWords(String string)
//package com.java2s; //License from project: Open Source License public class Main { public static int countWords(String string) { return string.trim().split("\\s+").length; }// www . jav a 2 s .com }