How to convert a number in the E-notation -- "5e+24" -- into a decimal Integer?

To account for a possible negative exponent:

[a, b] = String.split("5e+24", "e")
String.to_integer(a) * 10 ** String.to_integer(b)