Ejemplo n.º 1
0
 /**
  * Convert a String containing a numeric into the form x000...000nnnn where n is passed and x can
  * be a negative sign
  *
  * @param ns - string
  * @param len - length of the numeric portion without the sign
  * @return the formatted numeric string
  */
 public static String formatInteger(String ns, int len) {
   return Toolbox.formatInteger(ns, len);
 }