nushell/docs/commands/into_int.md
JT 8c0a2d3c15
Auto-generate markdown command docs (#4451)
* Finish updating

* a couple improvements

* Update renames

* cleanup examples
2022-02-13 21:22:51 -05:00

808 B

title layout version
into int command 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

> echo [[num]; ['-5'] [4] [1.5]] | into int num

Convert string to integer

> '2' | into int

Convert decimal to integer

> 5.9 | into int

Convert decimal string to integer

> '5.9' | into int

Convert file size to integer

> 4KB | into int

Convert bool to integer

> [$false, $true] | into int

Convert to integer from binary

> '1101' | into int -r 2

Convert to integer from hex

> 'FF' |  into int -r 16