polars as-date for dataframe

Converts string to date.

Signature

> polars as-date {flags} (format)

Flags

  • --not-exact, -n: the format string may be contained in the date (e.g. foo-2021-01-01-bar could match 2021-01-01)

Parameters

  • format: formatting date string

Input/output types:

inputoutput
anyany

Examples

Converts string to date

> ["2021-12-30" "2021-12-31"] | polars into-df | polars as-date "%Y-%m-%d"

Converts string to date

> ["2021-12-30" "2021-12-31 21:00:00"] | polars into-df | polars as-date "%Y-%m-%d" --not-exact

Notes

Format example: "%Y-%m-%d" => 2021-12-31 "%d-%m-%Y" => 31-12-2021 "%Y%m%d" => 2021319 (2021-03-19)