Here you can find the source of intToString(String string)
Parameter | Description |
---|---|
string | the string |
public static int intToString(String string)
//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); } }