Apache Common Java Tutorial

import org.apache.commons.lang.StringUtils;
public class MainClass {
    public static void main(String[] args) {
        //String can be max 12 chars including the ...
        System.out.println("1) Abbreviate Once upon a time >>>" +
            StringUtils.abbreviate("Once upon a time ", 12));
    }
}
1) Abbreviate Once upon a time Once upon...