mirror of
https://github.com/nushell/nushell.git
synced 2024-11-26 10:23:52 +01:00
c0a1d18e3d
* feat: update #4455, regenerate commands' docs * chore: update make_docs script
600 B
600 B
title | layout | version |
---|---|---|
str kebab-case | command | 0.59.0 |
converts a string to kebab-case
Signature
> str kebab-case ...rest
Parameters
...rest
: optionally convert text to kebab-case by column paths
Examples
convert a string to kebab-case
> 'NuShell' | str kebab-case
convert a string to kebab-case
> 'thisIsTheFirstCase' | str kebab-case
convert a string to kebab-case
> 'THIS_IS_THE_SECOND_CASE' | str kebab-case
convert a column from a table to kebab-case
> [[lang, gems]; [nuTest, 100]] | str kebab-case lang