case 'a': // Abbreviated weekday name (Mon, Tue, etc.).
fmt.applyPattern("EEE");
fmt.format(date, result, fp);
break;
case 'A': // Full weekday name (Monday, Tuesday, etc.).
fmt.applyPattern("EEEE");
fmt.format(date, result, fp);
break;
case 'b': case 'h': // Abbreviated month name (Jan,Feb,etc.).
fmt.applyPattern("MMM");
fmt.format(date, result, fp);