> For the complete documentation index, see [llms.txt](https://daseldocs.tomwright.me/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://daseldocs.tomwright.me/syntax/string-concatenation.md).

# String concatenation

To concatenate strings, simply use the `+` operator.

To concatenate non-string values into string values, use the [toString](/functions/tostring.md) function.

## Examples

```
"hello" + " " + "world" // "hello world"
"i am " + toString(100) + " years old" // "i am 100 years old"
```
