2018-05-07 03:32:16 +02:00
|
|
|
---
|
2021-12-15 03:41:17 +01:00
|
|
|
page_title: substr - Functions - Configuration Language
|
2018-05-07 03:32:16 +02:00
|
|
|
description: |-
|
|
|
|
The substr function extracts a substring from a given string by offset and
|
|
|
|
length.
|
|
|
|
---
|
|
|
|
|
|
|
|
# `substr` Function
|
|
|
|
|
2022-02-07 05:12:22 +01:00
|
|
|
`substr` extracts a substring from a given string by offset and (maximum) length.
|
2018-05-07 03:32:16 +02:00
|
|
|
|
|
|
|
```hcl
|
|
|
|
substr(string, offset, length)
|
|
|
|
```
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
```
|
|
|
|
> substr("hello world", 1, 4)
|
|
|
|
ello
|
|
|
|
```
|
|
|
|
|
|
|
|
The offset and length are both counted in _unicode characters_ rather than
|
|
|
|
bytes:
|
|
|
|
|
|
|
|
```
|
|
|
|
> substr("🤔🤷", 0, 1)
|
|
|
|
🤔
|
|
|
|
```
|
2021-05-18 22:03:23 +02:00
|
|
|
|
|
|
|
The offset index may be negative, in which case it is relative to the end of
|
|
|
|
the given string. The length may be -1, in which case the remainder of the
|
|
|
|
string after the given offset will be returned.
|
|
|
|
|
|
|
|
```
|
|
|
|
> substr("hello world", -5, -1)
|
|
|
|
world
|
|
|
|
```
|
2022-02-07 05:12:22 +01:00
|
|
|
|
2022-02-15 00:23:37 +01:00
|
|
|
If the length is greater than the length of the string, the substring
|
2022-02-07 05:12:22 +01:00
|
|
|
will be the length of all remaining characters.
|
|
|
|
|
|
|
|
```
|
|
|
|
> substr("hello world", 6, 10)
|
|
|
|
world
|
|
|
|
```
|