join¶
Join a list of strings with a separator.
Inputs¶
| Name | Type | Default | Required | Description |
|---|---|---|---|---|
| input | List[str | int] | True | |
| separator | str | True | String separator. |
Arguments¶
| Position | Argument | Type |
|---|---|---|
| 1 | input | List[str |
| 2 | separator | str |
Returns¶
None
Examples¶
join¶
Joins a list of strings into a single string
compact->: join ['stuff','and','things']
expanded:
->: join
input:
- stuff
- and
- things
separator: -
compact: stuff/and/things
expanded: stuff-and-things