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: