Another question to ask about built in java functions.
I know that there is a Integer.toBinar yString function where I can get the binary value of an integer in a string representation.
Example : from 107 i get "1101011"
Question would be, is there a function where I can convert back from string to integer. Like int i = functionName("1 101011") where i will contain 107.
thanks again.
I know that there is a Integer.toBinar yString function where I can get the binary value of an integer in a string representation.
Example : from 107 i get "1101011"
Question would be, is there a function where I can convert back from string to integer. Like int i = functionName("1 101011") where i will contain 107.
thanks again.
Comment