str camel-case for strings
Convert a string to camelCase.
Signature
> str camel-case {flags} ...rest
Parameters
...rest: For a data structure input, convert strings at the given cell paths.
Input/output types:
| input | output |
|---|---|
| string | string |
| list<string> | list<string> |
| table | table |
| record | record |
Examples
convert a string to camelCase
> 'NuShell' | str camel-case
nuShellconvert a string to camelCase
> 'this-is-the-first-case' | str camel-case
thisIsTheFirstCaseconvert a string to camelCase
> 'this_is_the_second_case' | str camel-case
thisIsTheSecondCaseconvert a column from a table to camelCase
> [[lang, gems]; [nu_test, 100]] | str camel-case lang
╭───┬────────┬──────╮
│ # │ lang │ gems │
├───┼────────┼──────┤
│ 0 │ nuTest │ 100 │
╰───┴────────┴──────╯