Files
opentf/website/docs/language/functions/substr.html.md
2021-01-22 12:22:21 -08:00

550 B

layout, page_title, sidebar_current, description
layout page_title sidebar_current description
language substr - Functions - Configuration Language docs-funcs-string-substr The substr function extracts a substring from a given string by offset and length.

substr Function

substr extracts a substring from a given string by offset and length.

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)
🤔