Advertisement
colmulhall

Untitled

Apr 4th, 2014
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.                         // no date available for the event, set the date to "unavailable"
  2.                         if(the_date.contains("00"))
  3.                     {
  4.                             the_date = "Unavailable";
  5.                     }
  6.                         else
  7.                         {
  8.                             // convert date format to dd/mm//yyyy
  9.                             String year = the_date.substring(0, 4);
  10.                             String month = the_date.substring(5, 7);
  11.                             String day = the_date.substring(8, 10);
  12.                             the_date = day + "/" + month + "/" + year;
  13.                         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement