I need to convert an String
to Integer
but first I have to make sure it's a number. In C# I use int.TryParse
or "".All(Char.IsNumber)
but apparently there is no such thing in Java.
Home
/
user-38468