WordQ is the String manipulation library for Java 8 with builder support.
import org.wordq.WordQ;
String formattedString=new WordQ(" Word Q ")
.stripWhiteSpace()
.append(" will", " format")
.join(new String[]{"the", "java", "Strings"}, " ")
.toString();
// formattedString => WordQ will format the java StringsWordQ contains the set of utility functions for String manipulate and perform operations over the Strings. The library is completely tested and documented.
Please refer this complete Javadoc
This library is inspired by
Released under the MIT License