Here you can find the source of tokenize(String value)
private static String[] tokenize(String value)
//package com.java2s; //License from project: Open Source License public class Main { private static final String delimiter = "\\s"; private static String[] tokenize(String value) { return value.split(delimiter); }/*ww w. j a v a 2 s . c o m*/ }