tm_substr Function β
tm_substr extracts a substring from a given string by offset and (maximum) length.
hcl
tm_substr(string, offset, length)Examples β
sh
tm_substr("hello world", 1, 4)
elloThe offset and length are both counted in unicode characters rather than bytes:
sh
tm_substr("π€π€·", 0, 1)
π€The offset index may be negative, in which case it is relative to the end of the given string. The length may be -1, in which case the remainder of the string after the given offset will be returned.
sh
tm_substr("hello world", -5, -1)
worldIf the length is greater than the length of the string, the substring will be the length of all remaining characters.
sh
tm_substr("hello world", 6, 10)
world