From: james@... Date: 2002-06-12T07:55:14+09:00 Subject: RE: How to reset a variable to the value in another variable? > > 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