/STRING is used to remove or add characters relative
to the current position in the character string. Positive values
of
n will exclude characters from the string while
negative values of
n will include characters to the
left of the string.
S" ABC" 2
/STRING 2DUP TYPE \ outputs "C"
-1
/STRING TYPE \ outputs "BC"