I am Converting numerical string to Int numbers in my Swift Playground in Xcode.
My calculation is getting more than 26 Digits...
e.g. "4444423533331235525555555"
I am getting error nil...
How to fix this?
My code look something like this:
My calculation is getting more than 26 Digits...
e.g. "4444423533331235525555555"
I am getting error nil...
How to fix this?
My code look something like this:
Code Block let ageString = "4444423533331235525555555" let ageInt = Int(ageString) print(ageInt ?? 0)