Meridianmeridian

Long Date with Full Month Name

datetime.date.long_full_month

Date with full month name. Locale-specific because month names vary by language (January vs janvier vs Januar).

Domain
datetime
Category
date
Casts to
DATE
Scope
Locale-specific
Locales
EN, FR, DE, ES, IT, PT, NL, SV, DA, NO, PL, CS, RU

Try it

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

DuckDB

Detect
SELECT finetype('January 15, 2024');
-- → 'datetime.date.long_full_month'
Cast expression
strptime({col}, '%B %d, %Y')::DATE
-- Format: %B %d, %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.long_full_month';

JSON Schema

finetype schema datetime.date.long_full_month
{
  "$id": "https://meridian.online/schemas/datetime.date.long_full_month",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "description": "Date with full month name. Locale-specific because month names vary by language (January vs janvier vs Januar).",
  "examples": [
    "January 15, 2024",
    "15 January 2024",
    "December 31, 2019"
  ],
  "pattern": "^(?:[A-Za-z]+ \\d{1,2},? \\d{4}|\\d{1,2}\\.? [A-Za-z]+ \\d{4})$",
  "title": "Long Date with Full Month Name",
  "type": "string",
  "x-finetype-broad-type": "DATE",
  "x-finetype-format-string": "%B %d, %Y",
  "x-finetype-transform": "strptime({col}, '%B %d, %Y')::DATE"
}

Examples

January 15, 202415 January 2024December 31, 2019

Aliases

long_full_month_name