Morning to all those Daniwebbers out there!
I have what I thought was an odd task of converting a String into an INT.
I know of the parser Integer.parseInt(x)
However if the user enters 02/14/2010 the / are not an INT type.
I've thought about using substring possibilities.
Taking substring 0 to 1 converting it to an INT, places 3-4 convert, and 6-9 convert.
from there I will test to see if those dates are possible and accurate.
Is this the best way to accomplish this?