5 lines
327 B
Plaintext
5 lines
327 B
Plaintext
string = "Small Basic"
|
|
TextWindow.WriteLine(Text.GetSubTextToEnd(string, 2)) 'Without the first character
|
|
TextWindow.WriteLine(Text.GetSubText(string, 1, Text.GetLength(string) - 1)) 'Without the last character
|
|
TextWindow.WriteLine(Text.GetSubText(string, 2, Text.GetLength(string) - 2)) 'Without the first and last characters
|