Re: suggestion sequence section
- Posted by "C. K. Lester" <cklester at yahoo.com> Feb 07, 2003
- 474 views
> s = "abcdefgh" > x = "1..2" > ? s[x] > > This only borders on string execution. I'm sure there's a reason, so I want to know why you can't go: s = "abcdefgh" x = 1 y = 2 ?s[x..y] or use an eXtractSequence function: s = "abcdefgh" x = "1..2" ? es( s, x ) where x can be an object... you'll just have to parse it out, which won't be too difficult. I think the results you want can be obtained, but maybe not the way you want to obtain them...?