|
SUBSTR
Substring instruction
The character at the ending index is NOT included. Indices are 0-based (index 0 is the first character of the string, not index 1) Example:load #3 load #0 load "foobar" substrThe result put onto the stack is "foo" If the ending index is specified as 0, this means goto the end of the string Example:load #0 load #3 load "foobar" substrThe result put onto the stack is "bar" | ||||||||