I have the following info:
int year = 2014;
String month_one = "Jun";
String month_two = "Jul";
String day = "Wed";
I want to get the number of weeks between the two dates but the problem is the number of day is not specified and its just the name of the day?
The first date is 2014 Jun Wednesday
The second date is 2014 Jul Wednesday
The day specified will always fall on the first occurrence of the month.