In gdscript, I know that I can get a character from a specific location using something like this:
var string = "Hello"
print(string[3]) # prints "l"
In python, we can use:
string[0:3]
or
string[:3]
to get the first 4 characters, or "Hell".
Is there a way to do this on gdscript as well?