| Author |
Converting String to Integer
|
Olivier Legat
Ranch Hand
Joined: Nov 17, 2007
Posts: 176
|
|
Hello everyone, I'm having a little bit of trouble converting a string a an integer: If I set string1 = "5" and string2 = "4" the output is "9". But like I excepted it doesn't work when the strings have spaces in them . How do I remove does spaces in the beginning? Does anyone know a built-in method from the APIs or an alternative way around this problem Thank-you [edit - change 'quote' tags to 'code' tags] [ February 29, 2008: Message edited by: fred rosenberger ]
|
Olly
|
 |
Joanne Neal
Rancher
Joined: Aug 05, 2005
Posts: 3011
|
|
|
String.trim()
|
Joanne
|
 |
fred rosenberger
lowercase baba
Bartender
Joined: Oct 02, 2003
Posts: 9939
|
|
Olivier, I change your post a little. When you want to post code, don't use the 'quote' tags, but the 'code' tags. This will preserve your formatting, making it easier to read.
|
Never ascribe to malice that which can be adequately explained by stupidity.
|
 |
Olivier Legat
Ranch Hand
Joined: Nov 17, 2007
Posts: 176
|
|
Oh oops. My bad. Thanks for fixing it
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32599
|
|
|
Go through the Integer class; there are probably several methods and a constructor which take Strings as parameters.
|
 |
 |
|
|
subject: Converting String to Integer
|
|
|