Full Weekday with Abbreviated Month
Type Registry
Full Weekday with Abbreviated Month
datetime.date.weekday_abbreviated_month Full weekday name followed by abbreviated month. Locale-specific for both weekday names and month abbreviations.
Domain datetime›date
Casts to DATE
Scope Locale-specific
Locales EN, FR, DE, ES, IT, PT
Try it
CLI
$ finetype infer -i "Monday, 15 Jan 2024"
→ datetime.date.weekday_abbreviated_month DuckDB
Detect
SELECT finetype('Monday, 15 Jan 2024');
-- → 'datetime.date.weekday_abbreviated_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_abbreviated_month'; JSON Schema
finetype schema datetime.date.weekday_abbreviated_month {
"$id": "https://noon.sh/schemas/datetime.date.weekday_abbreviated_month",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Full weekday name followed by abbreviated month. Locale-specific for both weekday names and month abbreviations.",
"examples": [
"Monday, 15 Jan 2024",
"Tuesday, 31 Dec 2019"
],
"pattern": "^[A-Za-z]+, \\d{2} [A-Za-z]{3} \\d{4}$",
"title": "Full Weekday with Abbreviated Month",
"type": "string"
} Examples
Monday, 15 Jan 2024Tuesday, 31 Dec 2019 Also known as
full_weekday_abbreviated_month