I am just wondering how am I suppose extract the numerical value for the string. I have a constructor that is :
public Calender(String month, String day, String year) {
}
I know I have to use the split() and Integer.parseInt(), but I am not sure how to use it.
Any help?
Thanks