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)🤔
We use cookies & other similar technology to collect data to improve your experience on our site, as described in our Privacy Policy and Cookie Policy.