Here you can find the source of tokenize(String input)
public static String[] tokenize(String input)
//package com.java2s; //License from project: Open Source License public class Main { public static String[] tokenize(String input) { return input.toLowerCase().split("\\s"); }/*from w w w . j ava 2 s .co m*/ }