Hi I have a string "72\n" When I try to use Integer.parseInt("72\n") it gives me a log error, unable to parse'72 ' as integer. What can I do to filter out the \n?
Thanks
|
|
|
This gets trickier if we allow for non-int floating point numbers which allow for locale dependent non-numeric chars such as a single |
|||
|
|
|
|
|||
|
|
|
The simple way to deal with leading and trailing whitespace is to use You could use So, in this case I'd say that using |
||||
|
|