import java.util.*; /** * @author Torbjörn Nilsson */ public class ExpandTab { /** * This is the size of the tab (standard). */ public static final int TABSIZE = 8; /** * Return a string consisting of the given nr of spaces. */ public static String space(int i) { String res=""; for(int j=0;j