Does Verse support any way to slice a string?
For example in Python and Javascript
>>> item = 'string here'
>>> item[2:]
'ring here'
> const item = 'string here'
> item.slice(2)
'ring here'
I am able to do something similar with the Slice function and arrays:
Items : []string = array{"zero", "one", "two", "three", "four"}
var Modified : []string = array{}
if (set Modified = Items.Slice[1, 3]){}