From: Lloyd Zusman Date: 2001-08-06T18:16:04+09:00 Subject: [ruby-talk:19198] Re: Some remarks from a nembie in Ruby ts writes: >>>>>> "R" == Renaud HEBERT writes: > >R> [ ... ] >R> >R> 4) To replace a single backslash with two, you need to write gsub(/\\/, >R> '\\\\\\\\')!! Ouch! > > http://www.rubycentral.com/faq/rubyfaq-9.html#ss9.18 > > You can write '\&\&', only 4 characters But to replace the letter 'a' with two backslashes, you still have ... gsub(/a/, '\\\\\\\\') However, you can also do this: gsub(/\\/){'\\\\'} and gsub(/a/){'\\\\'} > Guy Decoux -- Lloyd Zusman ljz@asfast.com