2022-02-14 03:22:51 +01:00
|
|
|
---
|
|
|
|
title: str kebab-case
|
|
|
|
layout: command
|
2022-03-04 13:10:09 +01:00
|
|
|
version: 0.59.1
|
2022-02-14 03:22:51 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
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
|
|
|
|
```shell
|
|
|
|
> 'NuShell' | str kebab-case
|
|
|
|
```
|
|
|
|
|
|
|
|
convert a string to kebab-case
|
|
|
|
```shell
|
|
|
|
> 'thisIsTheFirstCase' | str kebab-case
|
|
|
|
```
|
|
|
|
|
|
|
|
convert a string to kebab-case
|
|
|
|
```shell
|
|
|
|
> 'THIS_IS_THE_SECOND_CASE' | str kebab-case
|
|
|
|
```
|
|
|
|
|
|
|
|
convert a column from a table to kebab-case
|
|
|
|
```shell
|
|
|
|
> [[lang, gems]; [nuTest, 100]] | str kebab-case lang
|
|
|
|
```
|