mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-09 17:01:07 -05:00
This also renames some of the existing function pages whose source filenames were not matching the usual naming scheme (.html.md).
523 B
523 B
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| functions | substr function | 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)
🤔