Java Integer to String int2str(int someint)

Here you can find the source of int2str(int someint)

Description

intstr

License

LGPL

Declaration

public static String int2str(int someint) 

Method Source Code

//package com.java2s;
/**// w w w  .ja v  a 2 s. c  o  m
 * Converts a line of text into an array of lower case words using a
 * BreakIterator.wordInstance(). <p>
 *
 * This method is under the Jive Open Source Software License and was
 * written by Mark Imbriaco.
 *
 * @param text a String of text to convert into an array of words
 * @return text broken up into an array of words.
 */

public class Main {
    public static String int2str(int someint) {
        return new Integer(someint).toString();
    }
}

Related

  1. convertIntToString(int value)
  2. convertIntToString(int value)
  3. int2String(int i)
  4. int2String(int i)
  5. int2String(int i, int subNum)
  6. int2string(int n)