mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-01 08:04:04 -05:00
551 B
551 B
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| functions | 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)
🤔