static String dateToMonth(String date) { DateTime dateTime = DateTime.parse(date); return DateFormat.MMM().format(dateTime); }