| Author |
another silly question
|
Joe Panully
Greenhorn
Joined: Oct 10, 2004
Posts: 22
|
|
If i have a number, make it a string, and then take a sub string of it i.e int i=423; String iVal=""+i; String subval=iVal.substring(1,2); I now should have a substring with 4 My question is, i am not sure of the syntax used to "parse" something to something else. If I want to parse this substring "subval" to an integer I know I do <i>something</i> like this: int subval=Integer.parseInt(subval); but I am not sure of the exact syntax
|
 |
Joyce Lee
Ranch Hand
Joined: Jul 11, 2003
Posts: 1392
|
|
Hi Joe, Are you trying to break the value 423? Here is an example: Joyce  [ October 10, 2004: Message edited by: Joyce Lee ]
|
 |
Mike Gershman
Ranch Hand
Joined: Mar 13, 2004
Posts: 1272
|
|
subval = "2" String character positions start at 0. substr( firstPosition, lastPosition+1 ) So substr(1,2) selects the second character Your syntax is fine, but is subval an int or a String?
|
Mike Gershman
SCJP 1.4, SCWCD in process
|
 |
Joe Panully
Greenhorn
Joined: Oct 10, 2004
Posts: 22
|
|
|
Thanks!
|
 |
 |
|
|
subject: another silly question
|
|
|