Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 511 Bytes

File metadata and controls

29 lines (22 loc) · 511 Bytes
page_title description
substr - Functions - Configuration Language
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)
🤔