Java Integer to String intToString(String string)

Here you can find the source of intToString(String string)

Description

Int to string.

License

Apache License

Parameter

Parameter Description
string the string

Return

the int

Declaration

public static int intToString(String string) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    /**/* w w w .  ja  v  a2  s.  com*/
     * Int to string.
     * 
     * @param string
     *            the string
     * @return the int
     */
    public static int intToString(String string) {
        return Integer.parseInt(string);

    }
}

Related

  1. intToString(int value)
  2. IntToString(int value)
  3. intToString(int value, int nChars)
  4. intToString(int[] array)
  5. intToString(int[] values)