aspose file tools
The moose likes Beginning Java and the fly likes Converting String to Integer Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Converting String to Integer" Watch "Converting String to Integer" New topic
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
    
    9
String.trim()


Joanne
fred rosenberger
lowercase baba
Bartender

Joined: Oct 02, 2003
Posts: 9939
    
    6

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
    
    4
Go through the Integer class; there are probably several methods and a constructor which take Strings as parameters.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Converting String to Integer
 
Similar Threads
just basic division
Doubt on PriorityQueue?
Command line arguments
System.out.println confusion with the quotation marks and + sign
Lost in simple applets