March 6, 2019
2:44 p.m.
On Wed, 6 Mar 2019 at 12:00, Craig Johnson <craig@hivemind.net <mailto:craig@hivemind.net>> wrote:
What is the simplest way to copy characters between positions 4 and 8 from a string in Pharo?____
'1234567890' copyFrom: 5 to: 8 "5678" Page 207 in Updated Pharo by Example book explains more on substrings. HTH .. Subbu