Skip to content

Full Weekday with Full Month Name

Type Registry

Full Weekday with Full Month Name

datetime.date.weekday_full_month

Full weekday name followed by full month name. The most human-readable date format. Locale-specific.

Domain datetimedate
Casts to DATE
Scope Locale-specific
Locales EN, FR, DE, ES, IT, PT

Try it

CLI
$ finetype infer -i "Monday, 15 January 2024"
→ datetime.date.weekday_full_month

DuckDB

Detect
SELECT finetype('Monday, 15 January 2024');
-- → 'datetime.date.weekday_full_month'
Cast expression
strptime({col}, '%A, %d %B %Y')::DATE
Format: %A, %d %B %Y
Safe cast pipeline
-- Normalise and cast in one step
SELECT TRY_CAST(finetype_cast(my_column) AS DATE) AS clean_value
FROM my_table
WHERE finetype(my_column) = 'datetime.date.weekday_full_month';

JSON Schema

finetype schema datetime.date.weekday_full_month
{
  "$id": "https://noon.sh/schemas/datetime.date.weekday_full_month",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "description": "Full weekday name followed by full month name. The most human-readable date format. Locale-specific.",
  "examples": [
    "Monday, 15 January 2024",
    "Tuesday, 31 December 2019"
  ],
  "pattern": "^[A-Za-z]+, \\d{2} [A-Za-z]+ \\d{4}$",
  "title": "Full Weekday with Full Month Name",
  "type": "string"
}

Examples

Monday, 15 January 2024Tuesday, 31 December 2019

Also known as

long_weekday_month_name

Types in datetime