Sep 10, 2002 #1 chuq2001 Programmer Jul 15, 2002 24 US I have a Sting that is a number("010" and want to convert it to an int. How can I do that? Any Help? Thanks Chuck T
I have a Sting that is a number("010" and want to convert it to an int. How can I do that? Any Help? Thanks Chuck T
Sep 10, 2002 #2 wushutwist Programmer Aug 3, 2000 984 US Code: Integer.parseInt Avoid cross-posting. Upvote 0 Downvote
Sep 28, 2002 #3 CrackerSam Programmer Aug 27, 2002 5 FR you can use int i = Integer.valueOf("010".intValue() ; hope this help you Upvote 0 Downvote