i have a string of startDate = "2005/05/01" how would I take the 01 from the string and make it an int. I know Convert.ToInt works ............ I think.
There are actually a lot of ways to parse out those numeric values.
An easy way is to get the value using the substring(int startpos,int endpos) method and then use Integer.parseInt(String value) method upon it. Be aware that a RuntimeException (NumberFormatException) is thrown by the parseInt method. If you do not catch it, it will throw an exception if the String does not hold a valid numeric value.