nushell/docs/commands/into_int.md
Justin Ma c0a1d18e3d
update #4455, regenerate commands' docs and update make_docs script (#4586)
* feat: update #4455, regenerate commands' docs

* chore: update make_docs script
2022-02-21 11:26:00 -06:00

59 lines
807 B
Markdown

---
title: into int
layout: command
version: 0.59.0
---
Convert value to integer
## Signature
```> into int ...rest --radix```
## Parameters
- `...rest`: column paths to convert to int (for table input)
- `--radix {number}`: radix of integer
## Examples
Convert string to integer in table
```shell
> echo [[num]; ['-5'] [4] [1.5]] | into int num
```
Convert string to integer
```shell
> '2' | into int
```
Convert decimal to integer
```shell
> 5.9 | into int
```
Convert decimal string to integer
```shell
> '5.9' | into int
```
Convert file size to integer
```shell
> 4KB | into int
```
Convert bool to integer
```shell
> [$false, $true] | into int
```
Convert to integer from binary
```shell
> '1101' | into int -r 2
```
Convert to integer from hex
```shell
> 'FF' | into int -r 16
```