Subject: RE: How to reset a variable to the value in another variable?
From: <james rubyxml.com>
Date: Wed, 12 Jun 2002 07:55:14 +0900
In-reply-to: 42254
>
> similary
> content2=String.new(intro)
And if you don't want a new String object, just the same object with new
contents, you could do
content2.replace( intro )
James