How do I convert scientific notation to regular int For example: 1.23E2 I would like to convert it to 123
Thanks.
You can implement your own solution:
String string = notation.replace(".", "").split("E")[0]