> For the complete documentation index, see [llms.txt](https://docs.cascade.io/cascade/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cascade.io/cascade/functions-and-expressions/functions/text/space.md).

# SPACE

SPACE(`number`)

Returns a string containing the `number` of repeated spaces

### Arguments

| Input    | Description                          |
| -------- | ------------------------------------ |
| `number` | Number of spaces to fill string with |

### Output

A string with specified `number` of spaces

### Example

```
SPACE(`3`) = "   "
```
