nushell/docs/commands/from_ssv.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

688 B

title layout version
from ssv command 0.59.0

Parse text as space-separated values and create a table. The default minimum number of spaces counted as a separator is 2.

Signature

> from ssv --noheaders --aligned-columns --minimum-spaces

Parameters

  • --noheaders: don't treat the first row as column names
  • --aligned-columns: assume columns are aligned
  • --minimum-spaces {int}: the minimum spaces to separate columns

Examples

Converts ssv formatted string to table

> 'FOO   BAR
1   2' | from ssv

Converts ssv formatted string to table but not treating the first row as column names

> 'FOO   BAR
1   2' | from ssv -n