RosettaCodeData/Task/Substring/Maxima/substring.maxima
2023-07-01 13:44:08 -04:00

5 lines
138 B
Text

s: "the quick brown fox jumps over the lazy dog";
substring(s, 17);
/* "fox jumps over the lazy dog" */
substring(s, 17, 20);
/* "fox" */