On Thu, 29 Mar 2007, Horvath Adam wrote:

> Code I try:
> let repl = substitute(repl, "\\\"bluemarine\\\"", "anything", "g")
> 
> What's wrong? I can not figure out.

Try one of these:
let repl = substitute(repl, "\\\\\"bluemarine\\\\\"", "anything", "g")
let repl = substitute(repl, '\\"bluemarine\\"', "anything", "g")

I prefer the second one, because it doesn't look as strange.

- Christian

-- 
         Open mouth, insert foot, echo stupidity internationally.
Christian J. Robinson <[EMAIL PROTECTED]> http://infynity.spodzone.com/
   PGP keys: 0x893B0EAF / 0xFB698360   http://infynity.spodzone.com/pgp

Reply via email to