Skip to content

Instantly share code, notes, and snippets.

View dlisovsky's full-sized avatar
💡
Focusing

Dmitry Lisovsky dlisovsky

💡
Focusing
View GitHub Profile
@dlisovsky
dlisovsky / DateFormat.cls
Created February 19, 2020 16:09 — forked from tarot/DateFormat.cls
Apexでhttp-date (RFC1123)
public class DateFormat {
private static final Map<String, Integer> MONTHS = new Map<String, Integer> {
'Jan' => 1, 'Feb' => 2, 'Mar' => 3, 'Apr' => 4, 'May' => 5, 'Jun' => 6,
'Jul' => 7, 'Aug' => 8, 'Sep' => 9, 'Oct' => 10, 'Nov' => 11, 'Dec' => 12
};
public static Datetime fromRFC1123(String x) {
String[] dateParts = x.split('[\\s:]');
Integer year = Integer.valueOf(dateParts[3]);