# Nushell Cheat Sheet
## Data Types
convert string to integer:
```nu
"12" | into int
```
convert present date to provided time zone:
```nu
date now | date to-timezone "Europe/London"
```
update a record's language and if none is specified insert provided value:
```nu
{'name': 'nu', 'stars': 5, 'language': 'Python'} | upsert language 'Rust'
```
convert list of strings to yaml:
```nu
[one two three] | to yaml
```
print table data:
```nu
[[framework, language]; [Django, Python] [Laravel, PHP]]
```
select two named columns from the table and print their values:
```nu
[{name: 'Robert' age: 34 position: 'Designer'}
{name: 'Margaret' age: 30 position: 'Software Developer'}
{name: 'Natalie' age: 50 position: 'Accountant'}
] | select name position
```
## Strings
interpolate text:
```nu
let name = "Alice"
$"greetings, ($name)!"
# => greetings, Alice!
```
split text on comma delimiter and save the list to `string_list` variable:
```nu
let string_list = "one,two,three" | split row ","
$string_list
# => ╭───┬───────╮
# => │ 0 │ one │
# => │ 1 │ two │
# => │ 2 │ three │
# => ╰───┴───────╯
```
check if a string contains a substring:
```nu
"Hello, world!" | str contains "o, w"
# => true
```
join multiple strings with delimiter:
```nu
let str_list = [zero one two]
$str_list | str join ','
# => zero,one,two
```
slice text by indices:
```nu
'Hello World!' | str substring 4..8
# => o Wor
```
parse string into named columns:
```nu
'Nushell 0.80' | parse '{shell} {version}'
# => ╭───┬─────────┬─────────╮
# => │ # │ shell │ version │
# => ├───┼─────────┼─────────┤
# => │ 0 │ Nushell │ 0.80 │
# => ╰───┴─────────┴─────────╯
```
parse comma separated values (csv):
```nu
"acronym,long\nAPL,A Programming Language" | from csv
# => ╭───┬─────────┬────────────────────────╮
# => │ # │ acronym │ long │
# => ├───┼─────────┼────────────────────────┤
# => │ 0 │ APL │ A Programming Language │
# => ╰───┴─────────┴────────────────────────╯
```
color text in command-line terminal:
```nu
$'(ansi purple_bold)This text is a bold purple!(ansi reset)'
# => This text is a bold purple!
```
## Lists
insert list value at index:
```nu
[foo bar baz] | insert 1 'beeze'
# => ╭───┬───────╮
# => │ 0 │ foo │
# => │ 1 │ beeze │
# => │ 2 │ bar │
# => │ 3 │ baz │
# => ╰───┴───────╯
```
update list value by index:
```nu
[1, 2, 3, 4] | update 1 10
# => ╭───┬────╮
# => │ 0 │ 1 │
# => │ 1 │ 10 │
# => │ 2 │ 3 │
# => │ 3 │ 4 │
# => ╰───┴────╯
```
prepend list value:
```nu
let numbers = [1, 2, 3]
$numbers | prepend 0
# => ╭───┬───╮
# => │ 0 │ 0 │
# => │ 1 │ 1 │
# => │ 2 │ 2 │
# => │ 3 │ 3 │
# => ╰───┴───╯
```
append list value:
```nu
let numbers = [1, 2, 3]
$numbers | append 4
# => ╭───┬───╮
# => │ 0 │ 1 │
# => │ 1 │ 2 │
# => │ 2 │ 3 │
# => │ 3 │ 4 │
# => ╰───┴───╯
```
slice first list values:
```nu
[cammomile marigold rose forget-me-not] | first 2
# => ╭───┬───────────╮
# => │ 0 │ cammomile │
# => │ 1 │ marigold │
# => ╰───┴───────────╯
```
iterate over a list; `elt` is current list value:
```nu
let planets = [Mercury Venus Earth Mars Jupiter Saturn Uranus Neptune]
$planets | each { |elt| $"($elt) is a planet of the solar system" }
# => ╭───┬─────────────────────────────────────────╮
# => │ 0 │ Mercury is a planet of the solar system │
# => │ 1 │ Venus is a planet of the solar system │
# => │ 2 │ Earth is a planet of the solar system │
# => │ 3 │ Mars is a planet of the solar system │
# => │ 4 │ Jupiter is a planet of the solar system │
# => │ 5 │ Saturn is a planet of the solar system │
# => │ 6 │ Uranus is a planet of the solar system │
# => │ 7 │ Neptune is a planet of the solar system │
# => ╰───┴─────────────────────────────────────────╯
```
iterate over a list with an index and value:
```nu
$planets | enumerate | each { |elt| $"($elt.index + 1) - ($elt.item)" }
# => ╭───┬─────────────╮
# => │ 0 │ 1 - Mercury │
# => │ 1 │ 2 - Venus │
# => │ 2 │ 3 - Earth │
# => │ 3 │ 4 - Mars │
# => │ 4 │ 5 - Jupiter │