substr extracts a substring from a given string by offset and length.
substr
substr(string, offset, length)
> substr("hello world", 1, 4) ello
The offset and length are both counted in unicode characters rather than bytes:
> substr("🤔🤷", 0, 1) 🤔
On this page: