RosettaCodeData/Task/Substring-Top-and-tail/Maple/substring-top-and-tail-1.maple
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

9 lines
188 B
Text

> s := "some string":
> s[2..-1];
"ome string"
> s[1..-2];
"some strin"
> s[2..-2];
"ome strin"