mirror of
https://github.com/nushell/nushell.git
synced 2024-11-29 20:03:54 +01:00
28 lines
365 B
Markdown
28 lines
365 B
Markdown
---
|
|
title: build-string
|
|
layout: command
|
|
version: 0.59.1
|
|
---
|
|
|
|
Create a string from the arguments.
|
|
|
|
## Signature
|
|
|
|
```> build-string ...rest```
|
|
|
|
## Parameters
|
|
|
|
- `...rest`: list of string
|
|
|
|
## Examples
|
|
|
|
Builds a string from letters a b c
|
|
```shell
|
|
> build-string a b c
|
|
```
|
|
|
|
Builds a string from letters a b c
|
|
```shell
|
|
> build-string (1 + 2) = one ' ' plus ' ' two
|
|
```
|