Ok so I have 2 String variables holding dates in the format dd/mm/yyyy and I need to find the difference in days between them. Ideas?
Eg.
String date1 = "dd/mm/yyyy";
String date2 = "dd/mm/yyyy";
int difference = (date1 - date2);
EDIT: and unless absolutely necessary, I dont want to use the Calendar package.