---
title: date from-human
categories: |
date
version: 0.104.0
date: |
Convert a human readable datetime string to a datetime.
usage: |
Convert a human readable datetime string to a datetime.
editLink: false
contributors: false
---
<!-- This file is automatically generated. Please edit the command in https://github.com/nushell/nushell instead. -->
# `date from-human` for [date](/commands/categories/date.md)
<div class='command-title'>Convert a human readable datetime string to a datetime.</div>
## Signature
```> date from-human {flags} ```
## Flags
- `--list, -l`: Show human-readable datetime parsing examples
## Input/output types:
| input | output |
| ------- | -------- |
| nothing | table |
| string | datetime |
## Examples
Parsing human readable datetime
```nu
> 'Today at 18:30' | date from-human
```
Parsing human readable datetime
```nu
> 'Last Friday at 19:45' | date from-human
```
Parsing human readable datetime
```nu
> 'In 5 minutes and 30 seconds' | date from-human
```
PShow human-readable datetime parsing examples
```nu
> date from-human --list
```