2018-05-07 03:32:16 +02:00
|
|
|
---
|
|
|
|
layout: "functions"
|
2018-12-20 05:35:11 +01:00
|
|
|
page_title: "substr - Functions - Configuration Language"
|
2018-05-07 03:32:16 +02:00
|
|
|
sidebar_current: "docs-funcs-string-substr"
|
|
|
|
description: |-
|
|
|
|
The substr function extracts a substring from a given string by offset and
|
|
|
|
length.
|
|
|
|
---
|
|
|
|
|
|
|
|
# `substr` Function
|
|
|
|
|
2019-01-17 01:33:57 +01:00
|
|
|
-> **Note:** This page is about Terraform 0.12 and later. For Terraform 0.11 and
|
|
|
|
earlier, see
|
|
|
|
[0.11 Configuration Language: Interpolation Syntax](../../configuration-0-11/interpolation.html).
|
|
|
|
|
2018-05-07 03:32:16 +02:00
|
|
|
`substr` extracts a substring from a given string by offset and length.
|
|
|
|
|
|
|
|
```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)
|
|
|
|
🤔
|
|
|
|
```
|