提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
使用\\ s +将字符串分解为单独的单词
public class CountWords { /** 来 自 时代Java公众号 - nowjava.com **/ public static void main(String[] args) { String s = "this is a test 1 2 3 4."; String[] word = s.split("\\s+"); for (String w : word) System.out.println(w); } }