From: James Edward Gray II Date: 2005-01-21T01:48:35+09:00 Subject: Re: Yet another gsub question. On Jan 20, 2005, at 10:41 AM, mss wrote: > Changed: > # data.gsub!(/\"/,'*') > data.gsub(/\\"/, '"') > > ....as suggested. > > Nada. Output is still: > ....
... > > (note the \") Yes, that was me being sloppy. I didn't notice your use of p() to print, as Guy did. Usually, you want puts() or print() for output. p() is primarily a debugging tool. James Edward Gray II