#upToAll: is not up to snuff, I think that greaseUpToAll: should do the trick for you...
Dale
On Apr 17, 2011, at 10:05 AM, Thierry Thelliez wrote:
> Another interesting one:
>
> Runnning:
>
> | s r |
> r := 'abcde'.
> s := ReadStream on: r.
> s upToAll: 'bcd'.
> s position
>
>
> In Pharo = 4
> in GLASS = 2
>
>
> (I encountered that while parsing Google recaptcha results...).
> Thierry