Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

int to string

Status
Not open for further replies.

fatcodeguy

Programmer
Feb 25, 2002
281
CA
Anyone know how to convert a string to an integer...
thanks

 
string to integer:
int x = Integer.parseInt("123");

integer to string
String y=""+5;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top