nushell/docs/commands/size.md

24 lines
328 B
Markdown
Raw Normal View History

---
title: size
layout: command
version: 0.59.1
---
2019-11-10 10:11:23 +01:00
Gather word count statistics on the text.
## Signature
```> size ```
2019-11-10 10:11:23 +01:00
## Examples
2019-11-10 10:11:23 +01:00
Count the number of words in a string
2019-11-10 10:11:23 +01:00
```shell
> "There are seven words in this sentence" | size
```
Counts Unicode characters correctly in a string
```shell
> "Amélie Amelie" | size
2019-11-10 10:11:23 +01:00
```