1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-19 11:21:39 +03:00
wezterm/docs/config/lua/wezterm.time/parse.md
2022-08-07 13:26:59 -07:00

13 lines
428 B
Markdown

# `wezterm.time.parse(str, format)`
*Since: 20220807-113146-c2fee766*
Parses a string that is formatted according to the supplied format string:
```
> wezterm.time.parse("1983 Apr 13 12:09:14.274 +0000", "%Y %b %d %H:%M:%S%.3f %z")
"Time(utc: 1983-04-13T12:09:14.274+00:00)"
```
The format string supports the [set of formatting placeholders described here](https://docs.rs/chrono/latest/chrono/format/strftime/index.html).