I am trying to do some string manipulation, but I cannot seem to find any documentation on it. I know the very basic, with indexes.
I want to do this (from python):
example = "TEXT HERE"
print(example[2:])
#OUTPUT: XT HERE
In gdscript. Is there any way to do this? Thanks