Skip to content

vikneswaran20/wordq

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WordQ

Build Status GitHub

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 Strings

WordQ contains the set of utility functions for String manipulate and perform operations over the Strings. The library is completely tested and documented.

Documentation

Please refer this complete Javadoc

Inspiration

This library is inspired by

License

Released under the MIT License

About

The String Manipulation Library for Java

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages