Here you can find the source of suffix(String str, int width, String with)
public static String suffix(String str, int width, String with)
//package com.java2s; //License from project: Open Source License public class Main { public static String suffix(String str, int width, String with) { StringBuffer ret = new StringBuffer(str); while (ret.length() < width) ret.append(with);//from w ww . ja va 2 s. c o m return ret.toString(); } }