Java Utililty Methods String Split by Word

List of utility methods to do String Split by Word

Description

The list of methods to do String Split by Word are organized into topic(s).

Method

ListsplitWords(String text, String splitter)
Splits words by a given String argument (' ' or '-', to name two examples).
return Arrays.asList(text.split(splitter));