You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/website/content/docs/templates/hcl_templates/functions/string/substr.mdx

30 lines
502 B

---
page_title: substr function reference
description: |-
The `substr` function extracts a substring from a given string using an offset and
length.
---
# `substr` Function
`substr` extracts a substring from a given string by offset and length.
```hcl
substr(string, offset, length)
```
## Examples
```shell-session
> substr("hello world", 1, 4)
ello
```
The offset and length are both counted in _unicode characters_ rather than
bytes:
```shell-session
> substr("🤔🤷", 0, 1)
🤔
```