From: Michael Neumann Date: 2004-06-20T22:51:08+09:00 Subject: Re: StringIO class ? On Sun, Jun 20, 2004 at 10:33:16PM +0900, Lothar Scholz wrote: > Hello, i must set the $stderr to an object that collects the data > inside a buffer. Is there something like pythons StringIO class ? Have you tried StingIO :-) require 'stringio' str = "hello world" io = StringIO.new(str) Regards, Michael