Files
opentf/website/docs/configuration/functions/substr.html.md
Martin Atkins e7d71995f6 website: Document the remaining "collection" functions
This also renames some of the existing function pages whose source
filenames were not matching the usual naming scheme (.html.md).
2018-10-16 18:47:33 -07:00

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